基本上,我正在为教科书上的练习写解决方案。我想要这样的东西:
如您所见,子问题在问题编号后对齐,公式在每个子问题后对齐。
我尝试过\tabular
,但还是没能得到我想要的。有什么建议吗?
答案1
为了实现完美对齐的结果,可以轻松使用align
作为软件包一部分的环境amsmath
。
您可以使用以下代码实现此目的:
\documentclass{article}
\usepackage[fleqn]{mathtools}
\begin{document}
\begin{align*}
\intertext{2.4-14}
\intertext{(a)}
f(x) &= \begin{dcases}
\frac{125}{216} & x = -1,\\
\frac{75}{216} & x = 1,\\
\frac{15}{216} & x = 2,\\
\frac{1}{216} & x = 3;
\end{dcases} \\
\intertext{(b)}
\mu &= (-1) \cdot \frac{125}{216} + (1) \cdot \frac{75}{216} + (2) \cdot \frac{15}{216} + (3) \cdot \frac{1}{216} = -\frac{17}{216};\\
\sigma^2 &= E(X^2) - \mu^2 = \frac{269}{216} - \left( -\frac{17}{216} \right) = 1.2392;\\
\sigma &= 1.11; \\
\intertext{(c)}
& \text{See Figure 2.4-14.} \\
\intertext{(d)}
\overline{x} &= \frac{-1}{100} = -0.01; \\
s^2 &= \frac{100(129)-(-1)^2}{100(99)} = 1.30.29; \\
s &= 1.14.
\end{align*}
\end{document}
使用该包,因为的答案中的环境mathtools
需要它。该包会自动加载您也需要的包。dcases
(a)
mathtools
amsmath
结果如下:
答案2
这是另一种方法,使用tabbing
with aligned
from amsmath
。请记住,aligned
既可以在行内使用,也可以在显示中使用,并且该[t]
选项将确保第一行与当前基线对齐。请注意,当cases
使用时,局部基线是括号前面的部分,因此它不是“位于”括号顶部,而是从新行开始,并垂直“退格”。
这是代码。
\documentclass{article}
\usepackage{amsmath}
\newcommand{\0}{\phantom{0}}
\begin{document}
\begin{tabbing}
\0 2.4-14\enspace \=(a)\enspace \= \\[-\baselineskip]
\>\> $\begin{aligned}
f(x) &=
\begin{cases}
125/216, & x = -1, \\
\0 75/216, & x = 1, \\
\0 15/216, & x = 2, \\
\0\0 1/216, & x = 3;
\end{cases}
\end{aligned}$\\[6pt]
\>(b) \>
$\begin{aligned}[t]
\enspace \mu\ \ &={}\ (-1) \cdot \frac{125}{216}
+ (1) \cdot \frac{75}{216}
+ (2) \cdot \frac{15}{216}
+ (3) \cdot \frac{1}{216} = -\frac{17}{216}\,;\\
\sigma^2 \ \ &={}\ E(X^2) - \mu^2 = \frac{269}{216}
-\bigl( -\frac{17}{216} \bigr)^2 = 1.2392;\\
\sigma \ \ &={}\ 1.11;
\end{aligned}$\\[6pt]
\>(c) \>See Figure 2.4-14.\\[6pt]
\>(d) \>
$\begin{aligned}[t]
\enspace \overline{x}\ \ &={}\ \frac{-1}{100} = -0.01;\\
s^2 \ \ &={}\ \frac{100(129) - (-1)^2}{100(99)} = 1.3029;\\
s \ \ &={}\ 1.14.
\end{aligned}$
\end{tabbing}
\end{document}