文档中有多个术语/缩写列表

文档中有多个术语/缩写列表

我想在我的文档中包含多个术语/缩写词:

  1. 每个等式之下
  2. 文档的开头提供了所有使用的符号的完整命名法。

您知道是否可以使用nomenclacronym包来做到这一点吗?

或者换句话说,如何使其\nomenclature在等式下方可见?

先感谢您 !

答案1

最终我找到了解决问题的方法:)

谢谢@karlkoeller@Phssthpok您可以看到下面的代码:

\documentclass{report}
\usepackage{enumitem}

\usepackage[colorlinks]{hyperref}
\usepackage{glossaries}
\makeglossaries

\newcommand{\mathgloss}[2]{%
    \newglossaryentry{#1}{name={#1},description={#2}}%
    \begin{description}[labelwidth=3em]%
      \item[\gls{#1}]#2%
    \end{description}%
}

\begin{document}

Consider the equation
\begin{equation}
e = m * c^2
\end{equation}
in which
\mathgloss{e}{energy}
\mathgloss{m}{mass}
\mathgloss{c}{speed of light}

\printglossaries

\end{document} 

相关内容