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}
\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}
所以,@u136707 请