答案1
在单元格中使用数学模式的示例array
(减号、数字)、垂直表格线,可以被\multicolumn
和覆盖\cline
:
\documentclass{article}
\begin{document}
$\begin{array}{r|r|r|r}
1 & 2 & 6 & -8 \\
& & 2 & \\
\cline{2-3}
2 & 2 & \multicolumn{1}{r}{8} \\
& \\
\cline{2-2}
\end{array}$
\end{document}
也可以使用包siunitx
来正确对齐数字,但要在右侧添加一些空格来放置幻像数字。(右侧额外空间的原因我不清楚。)
\documentclass{article}
\usepackage{siunitx}
\begin{document}
$\sisetup{table-format=1.1}
\begin{array}{S|S|S|S[table-format=-1]}
1 & 2 & 6 & -8 \\
& & 2 & \\
\cline{2-3}
2 & 2 & \multicolumn{1}{S}{8} \\
& \\
\cline{2-2}
\end{array}$
\end{document}