我知道\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}