我正在使用 babel ngerman 包,并且我的 inputenc 设置为 utf-8,因此我只需要诸如 之类的翻译字符串\tableofcontents
。如何才能禁用变音符号翻译(如"overflow"
->överflow”)而不必转义引号?
答案1
\afz{Overflow}
这使用提供德语风格“”的命令- 引号。
(afz 代表“Anführungszeichen”,这是德语单词 ;-))
\documentclass{article}
\usepackage[ngerman]{babel}
\usepackage[babel,style=german]{csquotes}
\newcommand{\afz}[1]{\enquote{#1}}%
\begin{document}
\tableofcontents
\section{\afz{Overflow}}
\end{document}