创建缩写列表

创建缩写列表

他们为我提供了一份 latex 模板文档,大部分内容都很不错。我只是无法在其中添加缩写列表。这是我所拥有的,包括我想要的列表:

%List of Figures
\listoffigures
\addcontentsline{toc}{section}{List of Figures}
\newpage
%List of Tables
\listoftables
\addcontentsline{toc}{section}{List of Tables}
\newpage
%List of Abbreviations

% ?

%References
\renewcommand\refname{References}
\bibliography{literature} 
\bibliographystyle{plainnat}
\addcontentsline{toc}{section}{References}

对于其他每个元素(图、表、参考资料),都有一个新页面和一个目录条目。此外,每个元素的名称都打印在页面顶部,如下所示: 在此处输入图片描述

我如何为我的缩写添加这样的页面?

提前致谢!


编辑: 我尝试了这个包acronym。导入后,我添加了

%List of Tables
\listoftables
\addcontentsline{toc}{section}{List of Tables}
\newpage

%List of Abbreviations
\addcontentsline{toc}{section}{List of Abbreviations}
\section*{Acronym List}
\begin{acronym}
    \acro{CDMA}{Code Division Multiple Access}
    \acro{GSM}{Global System for Mobile communication} % [...]
\end{acronym}
\newpage

%Literaturverzeichnis
\renewcommand\refname{References}
\bibliography{literature} 
\bibliographystyle{plainnat}
\addcontentsline{toc}{section}{References}

大部分情况下,这个方法都很好用:我得到了一个包含首字母缩略词的新页面,甚至还得到了一个目录中的条目。但是,它仍然显示前一节中的“表格列表” - 我该如何更改它? 在此处输入图片描述


编辑2: 对于未来的访客:现在我通过添加\markright{List of Abbreviations}如下内容来解决这个问题:

%List of Abbreviations
\section*{List of Abbreviations}
\addcontentsline{toc}{section}{List of Abbreviations}
\markright{List of Abbreviations}
\begin{acronym}
    \acro{CDMA}{Code Division Multiple Access}
    \acro{GSM}{Global System for Mobile communication} % [...]
\end{acronym}

相关内容