Hi all,
I'm using the memoir class and the bibtex "unsrt" option for the bibliography. The result is exactly as hoped but it refuses using capital letters where required. An example:
what obtained after compiling:
... in inp:fe semiconductor .....
but in the bibliography I put:
... in InP:Fe semiconductor .....
in details, I put:
@ARTICLE{auth,
author = "auth",
Title = {Fast photorefractive self-focusing in InP:Fe semiconductor at infrared wavelengths},
....
}
any idea?
Thank you in advance
Mal
Document Classes ⇒ memoir and bibtex
NEW: TikZ book now 40% off at Amazon.com for a short time.

-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
memoir and bibtex
Nothing to do with memoir. The standard BibTeX styles include soem case-changed code for titles (and some other fields). You can prevent this by protecting capitals with braces:
This can be done automatically by some .bib file management tools (for example JabRef).
Code: Select all
@ARTICLE{auth,
author = "auth",
Title = {Fast photorefractive self-focusing in {I}n{P}:{F}e semiconductor at infrared wavelengths},
....
Joseph Wright