额外的、不需要的行由 \cline 设置

额外的、不需要的行由 \cline 设置

我正在尝试绘制一种表格,以填充西班牙版的 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}

在此处输入图片描述

答案1

我认为没有必要使用equationarray环境。你可以用一个简单的array

\documentclass[12pt,a4paper]{article}

\begin{document}
\[
\renewcommand*{\arraystretch}{1.5}
\begin{array}{c|cccc}
    &3  &-5 &0  &4  \\
 2  &   &6  &2  &4  \\ \cline{1-5}
    &3  &1  &2  &\multicolumn{1}{|@{}c}{}8 \\ \cline{5-5}
\end{array}
\]

\end{document}

在此处输入图片描述

答案2

array

在此处输入图片描述

\documentclass{article}

\usepackage{lipsum}

\begin{document}
\lipsum[22]
\[\renewcommand\arraystretch{1.5}
\begin{array}{r|rrrr}
    &3  &-5 &0  &4  \\
 2  &   &6  &2  &4  \\ \cline{1-5}
    &3  &1  &2  &\multicolumn{1}{|c}{}8 \\ \cline{5-5}
\end{array}
\]
\lipsum[33]
\end{document}

相关内容