With the following entry in the .bib file
@ARTICLE{a1,
AUTHOR="M., J. J.",
TITLE="My Sample Title",
JOURNAL="Journal Name",
pages="132--234",
YEAR=2000`
}
and with \bibliographystyle{plain} in the preamble, my PDF output displays the reference title with lower case, except for the first letter: "My sample title". How could I state that the title should be shown in PDF as I write it in the .bib file?
{}likeMy {S}ample {T}itle. But I haven't tried it and I really doubt that this is the best way ... – Thorsten Apr 23 '12 at 14:25:g/^TITLE=/ s/\<\([A-Z]\)\([a-z]*\)\>/{\1}\2/g. – Martin Apr 23 '12 at 15:22