BibTeX, biblatex and biber ⇒ No capitals in the title of article
-
- Posts: 1
- Joined: Sat Jan 16, 2010 5:19 pm
No capitals in the title of article
I made my bibliography using bibtex:
\bibliographystyle{plplain}
\bibliography{mybib}
in mybib.bib I put:
@article{l5,
author = "Barrett W T and Wallace W E",
title = "Studies of NaCl - KCl Solid Solutions. I. Heats of Formation, Lattice Spacings, Densities, Schottky Defects and Mutual Solubilities",
year = "1954",
journal = "Journal of the American Chemical Society",
volume = "76",
pages = "366-369"
}
after compilation everything is great apart from that in the title of article only first letter is capital, everything after S is small, but I need to write NaCl in capital N and capital C. What can I do with that ?
Thank you,
Grzesiek
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
No capitals in the title of article
enclose the corresponding letters using braces:
Code: Select all
...
title = "{S}tudies of {N}a{C}l - {KC}l Solid Solutions. I. {H}eats of {F}ormation, {L}attice {S}pacings, {D}ensities, {S}chottky {D}efects and {M}utual {S}olubilities"
...