如图所示,我想要几样东西:
- 编号步骤(如果可能,在左侧)
- 正确对齐和居中,因此看起来很专业。
- 步骤#2 中的总和需要与加号正确对齐。
\documentclass{article}
\usepackage{dcolumn}
\begin{document}
\begin{equation}
\begin{array}{l@{}l@{}l}
5 & 4 & \rightarrow 50 + 4 \\
\times & 7 \\
\cline{1-2}
\end{array}
\end{equation}
\begin{equation}
\begin{array}{l@{}l@{}l}
50 & \times 7 & = 350 \\
4 & \times 7 & = +28 \\
\cline{3-3}
& & 378
\end{array}
\end{equation}
\end{document}
答案1
- 欢迎来到 TeX.SE
- 我猜你正在寻找以下内容
\documentclass[leqno]{article}
\usepackage{amsmath}
\usepackage{enumitem}
\begin{document}
With \verb+enumerate+:
\begin{enumerate}
\item\hfil $\begin{array}[t]{rl}
54 & \rightarrow 50 + 4 \\
\times 7 & \\
\cline{1-1}
\end{array}$
\item\hfil $\begin{array}[t]{r @{} r}
50 \times 7 = & 350 \\
4 \times 7 = & +\phantom{3}28 \\
\cline{2-2}
& 378
\end{array}$
\end{enumerate}
Or with \verb+align+:
\begin{align}
& \begin{array}[t]{rl}
54 & \rightarrow 50 + 4 \\
\times 7 & \\
\cline{1-1}
\end{array} \\[2ex]
& \begin{array}[t]{r @{} r}
50 \times 7 = & 350 \\
4 \times 7 = & {}+\phantom{3}28 \\
\cline{2-2}
& 378
\end{array}
\end{align}
\end{document}