控制间距在

控制间距在

我正在尝试建立一个包含定义的术语小列表。下面是 MWE。我希望\indents 后面的项目能够对齐。

\documentclass{article}

\begin{document}

FOV \indent Field of View

A \indent  Half-Angle of FOV (subscripts apply)

\end{document}

有什么建议吗?

答案1

我认为你正在寻找tabbing

% arara: pdflatex

\documentclass{article}

\begin{document}
\begin{tabbing} 
    \hspace{1cm} \=  \kill  
    FOV \> Field of View \\
    A \>  Half-Angle of FOV (subscripts apply)  
 \end{tabbing}  
\end{document}

在此处输入图片描述

答案2

您可以使用等值列表包裹:

\documentclass{article}
\usepackage{eqlist}

\begin{document}
\begin{eqlist}[\eqlistinit \labelsep 2em]
    \item[FOV] Field of View
    \item[A] Half-Angle of FOV (subscripts apply)
    \item[LONGER] a slightly longer item
\end{eqlist}
\end{document}

它会自动根据您要定义的最长术语对齐所有定义。此外,使用后面的值\labelsep来设置最长术语的结尾与其定义开头之间的距离(“间隙”)。

您还可以在软件包文档

在此处输入图片描述

相关内容