如何在表格中添加垂直线

如何在表格中添加垂直线

这是我写的表格

\documentclass{article}
\usepackage{tabularx}
\setlength{\tabcolsep}{15pt}
\usepackage{array}
\usepackage{multirow}
\begin{document}

    \begin{table}[h]
        \begin{tabular}{| l | l | c | c |}
            \hline
        1 & 2 & \multicolumn{2}{c|}{Content 3 and 4}  \\[20pt] \hline 
        5 & 6 & 7 & 8 \\ \cline{2-4}
        9 & 10 & 11 &  \multirow{2}{*}{Rows 3 and 4} \\
        \cline{1-3}
        13 & 14 & 15  \\ \hline
    \end{tabular}
    \end{table}
\end{document}

该表格在我的笔记本电脑上显示如下。
没有垂直线的表格
我把右下角缺少垂直线的地方圈了出来。在这种情况下我该怎么办?

答案1

将表格的最后一行从

    13 & 14 & 15 \\ \hline

    % not the "&" added after "15"
    13 & 14 & 15 & \\ \hline

相关内容