BibTeX 中的重音符号

BibTeX 中的重音符号

使用 BibTeX 时,我很乐意在适当的地方添加重音符号。例如

@article{key,
author="Th{\'e}venaz, Jacques",
title={Permutation Representations Arising from Simplicial Complexes},
journal={Journal of Combinatorial Theory, Series A},
year={1987},
}

但是,如果以上是我的bib文件中的一个条目,并且我使用选项

\bibliographystyle{alpha}

在 LaTeX 文件中,则会产生错误,因为 BibTeX 自然会[Th\87]为该条目创建密钥。显然,我可以返回我的bbl文件并在此处更改密钥,但有没有更通用的方法来解决这个问题?

答案1

就 BibTeX 而言,正确的方法是Th{\'{e}}venaz

\begin{filecontents*}{\jobname.bib}
@article{key,
author="Th{\'{e}}venaz, Jacques",
title={Permutation Representations Arising from Simplicial Complexes},
journal={Journal of Combinatorial Theory, Series A},
year={1987},
}
\end{filecontents*}
\documentclass{article}
\begin{document}
\cite{key}
\bibliographystyle{alpha}
\bibliography{\jobname}
\end{document}

在此处输入图片描述

你可以在 Tame the BeaST 中阅读有关此内容的内容:texdoc tamethebeast

相关内容