在嵌套描述环境中自动对齐文本 LyX

在嵌套描述环境中自动对齐文本 LyX

我正在尝试使用 LyX 生成以下内容。

在此处输入图片描述

我正在使用 LyX、文章类和 enumitem 包。

我希望通过确定最长标签的长度来自动对齐列表中的文本信息。

这是 MWE 代码。

 \documentclass{article}
 \usepackage{enumitem}
 \begin{document}
   \begin{description}[labelwidth=4cm]
     \item [{Description1}] Here is the first description.
        \begin{description}[labelwidth=5cm]
          \item [{NestedDescription1}] $a+b=c$ This is the first nested description.
          \item [{NestedD2}] This is the second nested description.
          \item [{NDescription3}] This is the third nested description.
        \end{description}
     \item [{Des2}] This is the second shorter label description.
   \end{description}
 \end{document}

相关内容