以表格形式排列

以表格形式排列

我经常想展示一个等式,并在下方列出术语描述。每个项目由两部分组成。首先是符号,其次是简短的解释。见下文

输出

我认为如果将这两部分像表格一样分开,以便第二部分从同一位置开始每个项目,看起来会更好。以下是对齐方式的草图

对齐

这是通过表格实现的,它省略了 itemize 的两个好功能。将项目符号和对齐方式左缩进。此外,当我有更复杂的描述(例如公式)时,表格会变得混乱。

有人知道我怎样才能更好地实现这一目标吗?

以下是 MWE:

\documentclass{beamer}
\begin{document}

\begin{frame}{Equation}
    \begin{equation}
        Z = M \cdot aX + \int_0^\infty U dU
    \end{equation}
    
    \medskip

    \begin{itemize}
        \item $Z$ : blablalvsaf
        \item $ M \cdot aX$:a ghewuhgewg
        \item $ \int_0^\infty U dU$: we WERGgw   EG
    \end{itemize}
\end{frame}
\end{document}

答案1

您可以将诸如项目三角形之类的内容添加到表中:

\documentclass{beamer}

\usepackage{tabularray}

\begin{document}

\begin{frame}{Equation}
    \begin{equation}
        Z = M \cdot aX + \int_0^\infty U dU
    \end{equation}
    
    \medskip

    \begin{tblr}{
      colspec={
        @{}
        Q[
          mode=dmath,
          preto={\hspace*{\leftmargini}{\usebeamercolor[fg]{itemize item}\usebeamertemplate{itemize item}}\hspace*{\itemsep}},
          appto={:}
         ]
        X
        @{}
      }
    }
         Z & blablalvsaf\\
         M \cdot aX &a ghewuhgewg\\
         \int_0^\infty U dU &we WERGgw   EG
    \end{tblr}
    
\end{frame}
\end{document}

在此处输入图片描述

相关内容