如何创建表格的空白垂直分隔

如何创建表格的空白垂直分隔

我知道\hline\hline会在 中创建空的水平分隔tabular,那么空的垂直分隔呢?||似乎不起作用。

\documentclass{article}

\begin{document}

\begin{tabular}{|c||c|} \hline
    head1 & head2 \\\hline\hline
    cel1 & cel2 \\\hline
    cel3 & cel4 \\\hline
\end{tabular}

\end{document}

答案1

你的例子产生

在此处输入图片描述

你可以看到||制定了双重规则,但\hline始终没有被打破,并突破了它,也许你想要

在此处输入图片描述

\documentclass{article}
\usepackage{hhline}
\begin{document}

\begin{tabular}{|c||c|}\hhline{|-||-|}
    head1 & head2 \\\hhline{|=::=|}
    cel1 & cel2 \\\hhline{|-||-|}
    cel3 & cel4 \\\hhline{|-||-|}
\end{tabular}

\end{document}

相关内容