如何使用 bibtex 自定义首字母。例如,一些参考文献使用“Gh。”作为名字“Gheorghe”的首字母,我相信他们是对的。现在,bibtex 总是将首字母显示为“G”。但是,我想将其显示为“Gh”。请问我该怎么做?
答案1
如果您确实想用作Gh.
初始值,那么它很容易,即使不是直接的。
该示例使用filecontents*
环境只是为了保持独立。
\begin{filecontents*}{\jobname.bib}
@book{test,
title={Le{\c{c}}ons de g{\'e}om{\'e}trie diff{\'e}rentielle},
author={Vr{\^a}nceanu, {\relax Gh}eorghe},
year={1947}
}
\end{filecontents*}
\documentclass{article}
\begin{document}
A book: \cite{test}
\bibliographystyle{abbrv}
\bibliography{\jobname}
\end{document}