我想在我的文档中包含多个术语/缩写词:
- 每个等式之下
- 文档的开头提供了所有使用的符号的完整命名法。
您知道是否可以使用nomencl
或acronym
包来做到这一点吗?
或者换句话说,如何使其\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}