如何將第 3 列底部出現的求和方程式移到第 3 列的中心。到目前為止,使用 \hspace 尚未成功。
\begin{tabular}{ccr@{\hspace{1pt}=\hspace{1pt}}r}
$X_j$&$f_j$&\multicolumn{1}{r}{$f_jX_j$}\
\hline
28&1&(1)(28)&28\\
27&0&(0)(27)&0\\
26&1&(1)(26)&26\\
25&2&(2)(25)&50\\
24&3&(3)(24)&72\\
23&4&(4)(23)&92\\
22&3&(3)(22)&66\\
21&0&(0)(21)&0\\
20&1&(1)(20)&20\\
19&2&(2)(19)&38\\
18&1&(1)(18)&18\\
17&0&(0)(17)&0\\
16&1&(1)(16)&16\\
15&0&(0)(15)&0\\
14&1&(1)(14)&14\\
\hline
&$n=20$& \multicolumn{1}{c}{$\displaystyle\sum^{k}_{j=1}f_jX_j=440$}
\end{tabular}
答案1
為了在「方程式」設定中保持適當的間距,您需要使用類似的東西@{${}={}$}
(為了使其成為真正的關係)。我已更新您tabular
以使用此功能,並插入總數:
\documentclass{article}
\begin{document}
\begin{tabular}{ccr@{${}={}$}r}
$X_j$ & $f_j$ & \multicolumn{1}{c}{$f_jX_j$} \\
\hline
28 & 1 & (1)(28) & 28 \\
27 & 0 & (0)(27) & 0 \\
26 & 1 & (1)(26) & 26 \\
25 & 2 & (2)(25) & 50 \\
24 & 3 & (3)(24) & 72 \\
23 & 4 & (4)(23) & 92 \\
22 & 3 & (3)(22) & 66 \\
21 & 0 & (0)(21) & 0 \\
20 & 1 & (1)(20) & 20 \\
19 & 2 & (2)(19) & 38 \\
18 & 1 & (1)(18) & 18 \\
17 & 0 & (0)(17) & 0 \\
16 & 1 & (1)(16) & 16 \\
15 & 0 & (0)(15) & 0 \\
14 & 1 & (1)(14) & 14 \\
\hline
& $n=20$ & $\displaystyle\sum^{k}_{j=1}f_jX_j$ & $440$
\end{tabular}
\end{document}
答案2
您可以在第三列之前添加一些填充並隱藏大總和的寬度:
\documentclass{beamer}
\usepackage{array}
\begin{document}
\begin{frame}
\begin{tabular}{cc@{\hspace{4em}}r@{}>{${}={}$\hfill}r}
$X_j$&$f_j$&\multicolumn{1}{c}{$f_jX_j$}\\
\hline
28&1&(1)(28)&28\\
27&0&(0)(27)&0\\
26&1&(1)(26)&26\\
25&2&(2)(25)&50\\
24&3&(3)(24)&72\\
23&4&(4)(23)&92\\
22&3&(3)(22)&66\\
21&0&(0)(21)&0\\
20&1&(1)(20)&20\\
19&2&(2)(19)&38\\
18&1&(1)(18)&18\\
17&0&(0)(17)&0\\
16&1&(1)(16)&16\\
15&0&(0)(15)&0\\
14&1&(1)(14)&14\\
\hline
&$n=20$&\hidewidth$\displaystyle\sum^{k}_{j=1}f_jX_j=440$\hidewidth\hfil
\end{tabular}
\end{frame}
\end{document}
嘗試間距的大小,直到結果滿意為止
答案3
確保所有行具有相同的列數。 -並且僅\multicolumn
當單元格跨越多於一列時使用。
\documentclass[10pt]{article}
\begin{document}
\begin{tabular}{ccr@{\hspace{1pt}=\hspace{1pt}}r}
$X_j$&$f_j$&\multicolumn{2}{c}{$f_jX_j$}\\
\hline
28&1&(1)(28)&28\\
27&0&(0)(27)&0\\
26&1&(1)(26)&26\\
25&2&(2)(25)&50\\
24&3&(3)(24)&72\\
23&4&(4)(23)&92\\
22&3&(3)(22)&66\\
21&0&(0)(21)&0\\
20&1&(1)(20)&20\\
19&2&(2)(19)&38\\
18&1&(1)(18)&18\\
17&0&(0)(17)&0\\
16&1&(1)(16)&16\\
15&0&(0)(15)&0\\
14&1&(1)(14)&14\\
\hline
& $n=20$ & $\displaystyle\sum^{k}_{j=1}f_jX_j$ & 440
\end{tabular}
\end{document}