如何增加 nomencl 中两列之间的距离?

如何增加 nomencl 中两列之间的距离?

当我使用 nomencl 包时遇到了麻烦

当第一列中的符号很长时,如何借助包 nomencl 增加命名法中两列之间的距离?

如下两张图所示,当我使用nomencl包时,对齐不理想,如何才能达到第二张图那样的性能呢? 不受欢迎 通缉

最后,文件中的\nomgroup{A},是什么\nomeqref{10}意思.nlo

\begin{thenomenclature}
\nomgroup{A}
\item [{$\mathbf{A}$}]
\begingroup 
Compact form of state coefficient matrix
\nomeqref {10}
\nompageref{28}

答案1

您可以使用 来扩大“标签”的宽度 \setlength{\nomlabelwidth}{<lenght>}。默认值为 1cm。

A

% !TeX TS-program = pdflatex

\documentclass{article}
\usepackage[nocfg]{nomencl}
\makenomenclature

\setlength{\nomlabelwidth}{2cm} % added <<<<<<<<<<<<<<

\begin{document}
 
\nomenclature{$\sigma\beta\gamma\delta\sigma\beta\gamma\delta$}{The total mass of angels per unit area}%
 \nomenclature{$m$}{The mass of one angel}

\printnomenclature

\end{document}

为了避免猜测,你可以使用

\settowidth{\nomlabelwidth}{<longest label>}

对于这个例子

\settowidth{\nomlabelwidth}{$\sigma\beta\gamma\delta\sigma\beta\gamma\delta$}

相关内容