我正在尝试绘制一种表格,以填充西班牙版的 Rufinni 方法。一切都运行良好,但为了\cline{5-5}
最终获得,我必须输入\\ \cline{5-5}
,因此会包含一个额外的行。因此,前两列之间的垂直段被扩展了。
\documentclass[12pt,a4paper]{article}
\usepackage{eqnarray}
\begin{document}
\begin{equationarray*}{c|cccc}
&3 &-5 &0 &4 \\
2 & &6 &2 &4 \\ \cline{1-5}
&3 &1 &2 &\multicolumn{1}{|c}{}8 \\ \cline{5-5}
\end{equationarray*}
\end{document}
有什么简单的方法可以解决这个问题?我的意思是缩短第一条垂直线。
我得到了下一个,但是,尽管它显示了我想要的内容,但我不喜欢它,因为多余的行仍然存在。
\documentclass[12pt,a4paper]{article}
\usepackage{eqnarray}
\begin{document}
\begin{equationarray*}{c|cccc}
&3 &-5 &0 &4 \\
2 & &6 &2 &4 \\ \cline{1-5}
&3 &1 &2 &\multicolumn{1}{|c}{}8 \\ \cline{5-5}
\multicolumn{1}{c}{}&&&&\phantom{-} %This is for the last segment not to be showed
\end{equationarray*}
\end{document}