方程式后的变量定义缩进

方程式后的变量定义缩进

我想缩进方程中使用的变量的定义,如下所示:

a = b + c

where,
    a = the variable a
    b = the variable b
    c = the variable c

我尝试按照如下所示进行操作,但没有效果:

\begin{frame}
    \[ a = b + c \]
    \begin{small}
        where, \\
        \indent a = the variable a\\
        \indent b = the variable b\\
        \indent c = the variable c
    \end{small}
\end{frame}

请告诉我正确的做法。谢谢。

答案1

\parindent0pt默认情况下位于 中,beamer因此\indent不会执行任何操作。无论如何最好使用另一种方法

\documentclass{beamer}

\begin{document}

\begin{frame}

\[ a = b + c \]
where
\begin{tabular}[t]{r@{}l}
$a={}$ & the variable a\\
$b={}$ & the variable b\\
$c={}$ & the variable c
\end{tabular}

or
$\begin{aligned}[t]
a&=\text{the variable a}\\
b&=\text{the variable b}\\
c&=\text{the variable c}
\end{aligned}$

\end{frame}

\end{document}

在此处输入图片描述

请注意,\begin{small}...\end{small}由于\begin和的\end定义方式有些奇怪,所以才可以起作用。

相关内容