整个章节中 eqlist 的一致性对齐

整个章节中 eqlist 的一致性对齐

我目前正在使用 eqlist 创建论文中数学符号的摘要。例如,

\section*{Statistical theory}

\begin{eqlist}[\labelsep2em]
\item[$D\{\cdot\}$] mathematical dispersion operator 
\item[$E\{\cdot\}$] mathematical expectation operator 
\end{eqlist}

\section*{Estimation theory}

\begin{eqlist}[\labelsep2em]
\item[$\underline{y}$] random vector of $m$ observations.
\item[$Q_y$] an $m \times m$ a priori variance-covariance matrix of the observations.
\end{eqlist}

在每个部分中,描述的开始点与该本地部分列表中最长的标签对齐。因此,在我的整个章节中它并不一致。

有没有一种方法可以简单地指定每种情况下的最小标签宽度?每次我尝试各种选项时,例如\labelwidth4em在方括号中的选项部分中指定,它似乎都会被覆盖。

任何帮助都值得感激!

答案1

这就是Eqlist环境的设计目的。要使用此功能,您需要在应获得相同对齐的列表上指定一个标签。使用标签notation,您的示例可以写成

\documentclass{article}

\usepackage{eqlist}

\begin{document}
\section*{Statistical theory}

\begin{Eqlist}[\eqlistinit\labelsep2em]{notation}
\item[$D\{\cdot\}$] mathematical dispersion operator 
\item[$E\{\cdot\}$] mathematical expectation operator 
\end{Eqlist}

\section*{Estimation theory}

\begin{Eqlist}[\eqlistinit\labelsep2em]{notation}
\item[$\underline{y}$] random vector of $m$ observations.
\item[$Q_y$] an $m \times m$ a priori variance-covariance matrix of the observations.
\end{Eqlist}
\end{document}

示例输出

相关内容