tabu 包 \end{tabu} 错误

tabu 包 \end{tabu} 错误

ShareLaTex 正在“发现”该行发生的几个错误,\end{tabu} 我对 latex 还不太熟悉,很难找出问题所在。

任何帮助都将不胜感激,这里是代码:

\documentclass[11pt]{article}
\usepackage[utf8x]{inputenc}
\usepackage[table]{xcolor}
\usepackage{tabu}
\usepackage[version=4]{mhchem}

\begin{document}

\begin{table}
\centering
\caption{316 SS comp.}
\label{tab:316}
\rowcolors{1}{blue!5!white!95}{white}
\begin{tabu} to \textwidth {X[.2,l] X[.1,l] X[l]}
\rowfont\bfseries {{Element} & {wt\%} & {Isotopic Abundance}} \\[0.20em]
\small{Chromium} & 17.00 & \ce{^{52} Cr}(83.76\%),\ce{^{53} Cr}(9.55\%),\ce{^{50} Cr}(4.31\%),\ce{^{54} Cr}(2.38\%) \\[0.2em]
\\etc.....

\end{tabu}
\end{table}


\end{document}

答案1

您必须删除跨越多列的标题行中的括号:

\rowfont\bfseries {Element} & {wt\%} & {Isotopic Abundance} \\[0.20em]

相关内容