Document Classesmemoir and bibtex

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
mal
Posts: 3
Joined: Wed Mar 17, 2010 5:47 pm

memoir and bibtex

Post by mal »

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

josephwright
Site Moderator
Posts: 814
Joined: Tue Jul 01, 2008 2:19 pm

memoir and bibtex

Post by josephwright »

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:

Code: Select all

@ARTICLE{auth,
  author = "auth",
  Title = {Fast photorefractive self-focusing in {I}n{P}:{F}e semiconductor at infrared wavelengths},
....
This can be done automatically by some .bib file management tools (for example JabRef).
Joseph Wright
Post Reply