📃

booktabsの\topruleとかをつけた表がおかしい

2024/05/05に公開
\begin{document}
\begin{table}[h]
    \caption{名前}
    \centering
    \begin{tabular}{c|rrr}
        \toprule
        a & b & c \\
        \midrule
        a & b & c \\
        \bottomrule
    \end{tabular}
\end{table}
\end{document}

上のようなTeXをタイプセットすると

みたいになる人向けです。

解決方法

booktabsarydshlnが干渉していることが原因(多分)です。\usepackageたちを以下のような順番にしてください。

\usepackage{booktabs}
\usepackage{arydshln}
\usepackage[table]{xcolor}

Discussion