📃
booktabsの\topruleとかをつけた表がおかしい
\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をタイプセットすると
みたいになる人向けです。
解決方法
booktabs
とarydshln
が干渉していることが原因(多分)です。\usepackage
たちを以下のような順番にしてください。
\usepackage{booktabs}
\usepackage{arydshln}
\usepackage[table]{xcolor}
Discussion