这是我的 LateX 项目中的另一个问题。目前,我正在使用包词汇表来管理我的首字母缩略词。我在章节标题中使用了一些首字母缩略词。因此,首字母缩略词首先在目录中描述。之后,文档中的章节标题仅包含缩写形式。我的目标是让章节标题完整。目录不应“计入”。这是我的最小代码示例来展示问题。如果您删除\tableofcontents
章节标题中的首字母缩略词,就会如我所愿。此外,\printglossaries 不起作用。
\documentclass[english, 12pt]{scrartcl}
\usepackage{glossaries}
\setacronymstyle{long-short}
\newacronym{NMR}{NMR}{nuclear magnetic resonance spectroscopy}
\usepackage{blindtext}
\begin{document}
\tableofcontents
\cleardoubleoddpage
\section{Data}
\subsection{\gls{NMR}}
In the Text, the \gls{NMR} entry should look like "NMR". In the section heading it should look like "Nuclear magnetic resonance spectroskopy".
\cleardoubleoddpage
\printglossaries
\end{document}