LaTeX 矩阵中的水平线

LaTeX 矩阵中的水平线

我想从维基百科页面上复制下表龙格-库塔方法

屠夫桌

因此,我需要分界线。虽然这个答案在这里:https://tex.stackexchange.com/a/33522/295600对于垂直分割线来说效果很好,我不知道如何复制水平分割线。

答案1

用于在和环境\hline中创建全宽水平线。arraytabular

在此处输入图片描述

\documentclass{article} % or some other suitable document class

\begin{document}
\[
\renewcommand\arraystretch{1.333} % default: 1.000
\begin{array}{@{} c | ccccc @{}}
0   & \\
c_2 & a_{21} \\
c_3 & a_{31} & a_{32} \\
\vdots & \vdots & & \ddots \\
c_s & a_{s1} & a_{s2} & \cdots & a_{s,s-1} \\
\hline
    & b_1    & b_2    & \cdots & b_{s-1}   & b_s 
\end{array}
\]
\end{document}

答案2

您可以在分隔矩阵倒数第二行和最后一行\hline之后添加。\\

相关内容