我正在尝试制作一个 beamer 演示文稿,介绍如何通过 4 步流程解决各种线性方程。由于我希望幻灯片采用类似模板的格式,所以我原本想制作一个表格,然后复制粘贴,但后来我意识到,只需一个命令然后进行多列处理会更简单。但是,间距效果不佳。
我需要在每条右线之间留出 2-3 个空格,因为如果存在的话,解方程的某些步骤可能不需要太多工作。
(此外,我总是容易遇到“结束帧”问题)
\documentclass{beamer}
\usepackage{multicol}
\usepackage[utf8]{inputenc}
\newcommand{\howto}{
Mul by LCD, Distribute \\
\\
Isolate $x$'s \\
\\
Isolate constants \\
\\
Divide by coefficient
}
\begin{document}
\begin{frame}
\frametitle{\begin{center}
$3-\frac{1}{4}x=\frac{3}{2}$
\end{center}}
\begin{multicols}{2}
$4(3-\frac{1}{4}x)=4(\frac{3}{2})$ \\
$12-x=6$ \\
$12-12-x=6-12$ \\
$-x=-6$ \\
\\
\\
$\frac{-x}{-1}=\frac{-6}{-1}$ \\
$x=6$
\howto
\end{multicols}
\end{frame}
\end{document}
答案1
可能类似下面的内容更接近您想要实现的效果。描述性文本可以单独放置,因此您可以轻松跳过方程行。我还根据符号对齐了所有方程,=
并更改了括号的大小。
\documentclass{beamer}
\newcommand{\stepone}{\text{1. Mul by LCD, Distribute}}
\newcommand{\steptwo}{\text{2. Isolate $x$'s}}
\newcommand{\stepthree}{\text{3. Isolate constants}}
\newcommand{\stepfour}{\text{4. Divide by coefficient}}
\begin{document}
\begin{frame}
\frametitle{\[3-\frac{1}{4}x=\frac{3}{2}\]}
\[\addtolength{\jot}{0.5em}
\begin{aligned}
4\left(3-\frac{1}{4}x\right)&=4\left(\frac{3}{2}\right) &&\stepone \\
12-x&=6 &&\steptwo \\
12-12-x&=6-12 &&\stepthree \\
-x&=-6 \\
\frac{-x}{-1}&=\frac{-6}{-1} &&\stepfour \\
x&=6
\end{aligned}
\]
\end{frame}
\end{document}