我想在参考书目中展示一些字母作为大写。例如:
@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}
} 但是"LIBSVM“并没有按原样显示:
3张志忠。Libsvm。http://www.csie.ntu.edu.tw/̃cjlin/libsvm/,2008年。
怎样才能使字母变为大写?感谢和问候!
发布于 2010-04-13 06:38:01
通常,为了防止BibTeX将您的字母转换为小写,请将它们包含在{}中
title = {A History Of {StudlyCaps}}将制作"A history of StudlyCaps“。
阿尔修·科斯塔说的全大写缩写应该用小写字母表示是正确的,但这是另一回事。
发布于 2010-04-13 05:54:07
\textsc用于以小写字母设置文本格式。您可以在.bib文件中执行此操作:
title = {\textsc{LIBSVM}}发布于 2011-12-13 23:03:15
在你想要保持大写的任何东西周围放上{}括号。
例如:
@type{bibkey,
title = "{M}y {B}ibliography is the {B}est!",
author = "{ABCDE}",
}https://stackoverflow.com/questions/2625703
复制相似问题