为什么三线表很长,使用 \toprule,还会出现报错?

发布于 2024-11-17 22:29:06

begin{table}

\centering
 \caption{vegetable}
  \toprule
\begin{tabular}{cc}
   Parameter  & Value\\

hline

    a1 & 3\\
    b1 & 1\\
    c1 & 0\\

bottomrule

\end{tabular}

\label{tab:my_label}

end{table}
a9363930a32ca4ceb7980737b23b205.png

查看更多

关注者
0
被浏览
138
1 个回答
W5
W5 2天前
这家伙很懒,什么也没写!

\toprule 应该放在tabular环境里,而不是table环境里面。
当然,如果你用的不是booktabs或者类似宏包中的\toprule,那就不知道了。
所以得把你的代码提供得再完整一点。比如:

\documentclass{article}
\usepackage{booktabs}
\begin{document}
\begin{table}
        \centering
        \caption{vegetable}
        \begin{tabular}{cc}
                \toprule
                Parameter  & Value\\
                \hline
                a1 & 3\\
                b1 & 1\\
                c1 & 0\\
                \bottomrule
        \end{tabular}
        \label{tab:my_label}
\end{table}
\end{document}

撰写答案

请登录后再发布答案,点击登录

发布
问题

分享
好友

手机
浏览

扫码手机浏览