使用 Booktabs 包中的 \toprule \midrule 时出错

使用 Booktabs 包中的 \toprule \midrule 时出错

我正在尝试使用 booktabs 包来使我的表格看起来更美观。但是,每当我使用 \toprule \midrule 或 \bottomrule 时,Latex 都会给我一个错误。这是我创建的一个简单的示例:

\documentclass[10pt,DIV=12,a4paper,numbers=noenddot]{scrreprt}


\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}

\usepackage{booktabs} % To thicken table lines

\begin{document}

\begin{table}
    \begin{tabular}{ll}
    \topline
    Header 1 & Header 2\\
    \midline
    Body 1 & Body 2\\
    Body 3 & Body 4\\
    \bottomline
    \end{tabular}
    \end{table}

\end{document}

这是乳胶输出:

http://www.text-upload.com/read.php?id=367245&c=7201095

我还浏览了以/usr/local/texlive/2011/texmf-dist/tex/latex/检查包是否真的存在。确实存在。我不明白为什么 latex 会抛出这些错误。有人能帮忙吗?

答案1

改为\topline\toprule与中、下对应者相同。

相关内容