Capital in Bibtex
I want to show some letters in Bibliography as capital. For example:
@misc{libsvm,
abstract = {LIBSVM is an implbmentation of Support vector machine (SVM).},
author = {Chang, Chih-Chung},
howpublished = {\url{http://www.csie.ntu.edu.tw/~cjlin/libsvm/}},
keywords = {svm},
posted-at = {2010-04-08 00:05:04},
priority = {2},
title = {LIBSVM.},
url = "http://www.csie.ntu.edu.tw/~cjlin/libsvm/",
year = {2008}
}
But "LIBSVM" is not shown as it is:
开发者_开发技巧[3] Chih-Chung Chang. Libsvm. http://www.csie.ntu.edu.tw/ ̃cjlin/libsvm/, 2008.
How can I make the letters capital? Thanks and regards!
Generally, to keep BibTeX from turning your letters lowercase, enclose them in {}
:
title = {A History Of {StudlyCaps}}
will produce "A history of StudlyCaps."
Alceu Costa is correct that all-capital abbreviations should be formatted in small capitals, but that is a different matter than this.
The \textsc
is used to format the text in small capitals. You can do this in your .bib file:
title = {\textsc{LIBSVM}}
Place {} brackets around anything you want to keep in CAPS.
For example:
@type{bibkey,
title = "{M}y {B}ibliography is the {B}est!",
author = "{ABCDE}",
}
In the case of IEEEtran LaTeX Class template, one can simply do the following:
title = "{3D Open Source Framework for Something you need}"
A template can be found at the following link
http://www.ieee.org/conferences_events/conferences/publishing/templates.html
精彩评论