命名包中的调用缩写

命名包中的调用缩写

就像在首字母缩略词包中,我们可以通过 \ac 调用首字母缩略词,通过 \gls 调用词汇表,有人可以指导我如何在使用包命名法时调用首字母缩略词

\documentclass[a4paper,12pt,times,numbered,print,index,custommargin]{Classes/PhDThesisPSnPDF}
\usepackage{nomencl} 
\makenomenclature

这是我用来定义首字母缩略词的命令。(z 代表首字母缩略词定义)

\nomenclature[Z]{$WDM$}{Wavelength Division Multiplexing} 
\nomenclature[Z]{$EDFA$}{Erbium Doped Fiber Amplifiers}

如果它们也出现在后面的章节中,我不知道在定义之后如何调用它们。

答案1

有什么问题

\nomenclature{WDM}{Wavelength Division Multiplexing} 
\nomenclature{EDFA}{Erbium Doped Fiber Amplifiers}

请注意,没有美元符号:这不是数学。

\documentclass{article}
\usepackage[norefeq]{nomencl}
\renewcommand{\nomname}{Abbreviations}
\pagestyle{empty}
\makenomenclature
\begin{document}
In the text we will discuss WDM and EDFA.
\nomenclature{WDM}{Wavelength Division Multiplexing}%
\nomenclature{DFA}{Erbium Doped Fiber Amplifiers}%

\printnomenclature

\end{document}

在此处输入图片描述

相关内容