我想在附录中添加一个部分,其中显示数学符号、运算符等的列表,并在旁边附上文字说明。理想情况下,它们应该用点分隔(就像在目录中一样)。
我该如何实现?这就是词汇表的用途吗?
以下是我当前的设置:
...
\appendix{}
\chapter{Appendix}
\section{Notation}
THIS IS WHERE THE LIST SHOULD APPEAR
\section{Appendix 2}
Lorem ipsum ...
...
编辑:我的设置中的更多代码
\usepackage[section,numberedsection=autolabel,symbols]{glossaries}
...
\glsaddall{}
\printglossary[type=main,style=long,nonumberlist]
这是我的词汇表条目
\newglossaryentry{pressure}
{
name={\ensuremath{p}},
description={Pressure}
}
\newglossaryentry{acceleration}
{
name={\ensuremath{g}},
description={Acceleration}
}
答案1
我没有使用自动化,而是使用了一种简单的方法tabular
(实际上,longtabu
是为了多页兼容性)。A\quad
缩进留出足够的水平空白,手动\\[3pt]
间距按首字母对列表进行分组。
预览
平均能量损失
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{tabular}{@{}ll@{}}
\textbf{Symbol} & \textbf{Description} \\
$a\in A$ & \textbf{arc} (directed) from vertex $v_i$ to $v_j$, set of arcs \\
$\phantom{a\in{}}A^\text{p}_{v}$ & \quad arriving arcs into vertex $v$ (\emph{predecessor}) \\
$\phantom{a\in{}}A^\text{s}_{v}$ & \quad leaving arcs from vertex $v$ (\emph{successor}) \\[3pt]
$b \in B_{e}$ & \textbf{building}, set of buildings along edge $e$ \\
$b_\text{eff}$ & concurrence effect (parameter) \\[3pt]
$c\in C$ & \textbf{commodity}, set of commodities \\[3pt]
$e\in E$ & \textbf{edge}, set of edges \\[3pt]
& \dots \\[3pt]
$v\in V$ & \textbf{vertex}, set of vertices
\end{tabular}
\end{document}