我想缩进方程中使用的变量的定义,如下所示:
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
\parindent
0pt
默认情况下位于 中,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
定义方式有些奇怪,所以才可以起作用。