答案1
这并不困难hhline
。
\documentclass{article}
\usepackage{hhline}
\begin{document}
\begin{tabular}{c || c | c}
& x & y \\
\hhline{=||=|=}
a & 1 & 2 \\ \hline
b & 3 & 4
\end{tabular}
\end{document}
但结果并不理想。比较一下。
\documentclass{article}
\usepackage{hhline}
\usepackage{booktabs}% for the second table
\begin{document}
\begin{tabular}{c || c | c}
& x & y \\
\hhline{=||=|=}
a & 1 & 2 \\ \hline
b & 3 & 4
\end{tabular}
\qquad
\begin{tabular}{@{}ccc@{}}
\toprule
& x & y \\
\midrule
a & 1 & 2 \\
b & 3 & 4 \\
\bottomrule
\end{tabular}
\end{document}