In general auctex makes a good job of formating latex. However, the formating for Bibtex doesn't seem that great. For example, I would tend to format my bibtex entries in this way:
@article{Smith,
author = {Smith, John},
journal = "A good journal",
title = {A snappy title},
volume = {1},
year = {2010}
}
However, C-M-\ formats the entry as:
@article{Smith,
author = {Smith, John},
journal = "A good journal",
title = {A snappy title},
volume = {1},
year = {2010}
}
(notice the large gap on the LHS). Is there a better mechanism for formating Bibtex entries when using emacs?
C-c C-bin auctex bibtex mode, they are indented as you want them to be... – Seamus Sep 6 '10 at 9:41