Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Capital in Bibtex

Tags:

latex

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!

like image 798
Tim Avatar asked Apr 12 '10 21:04

Tim


People also ask

How do you capitalize in BibTeX?

The solution is to enclose the words or letters whose capitalisation BibTeX should not touch in braces, as: title = {The {THE} operating system}, title = {On the Theory of {Brontosauruses}}, Sometimes you find BibTeX changing the case of a single letter inappropriately.

How do you capitalize in LaTeX?

The TeX primitive commands \uppercase and \lowercase are set up by default to work only with the 26 letters a–z and A–Z. The LaTeX commands \MakeUppercase and \MakeLowercase commands also change characters accessed by commands such as \ae or \aa .

What is the BibTeX format?

BibTeX stands for a file format - with file extension of . bib - that contains a bibliography or a list of references. As an external, flat-file database, this BibTex file can be initially created and stored within the Zotero or EndNote software program; Then in order to be used in conjunction with a LaTeX .

What is the difference between BibTeX and BibLaTeX?

BibLaTeX is the succesor format of BibTeX, it is the more modern format, which enhances bibtex. JabRef supports both formats. In the context of JabRef the main difference is just the different entry types and corresponding fields.


3 Answers

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.

like image 99
ptomato Avatar answered Oct 03 '22 17:10

ptomato


The \textsc is used to format the text in small capitals. You can do this in your .bib file:

title = {\textsc{LIBSVM}}
like image 27
Alceu Costa Avatar answered Oct 03 '22 16:10

Alceu Costa


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}", 

}
like image 30
Steve Avatar answered Oct 03 '22 16:10

Steve