\begin{table}[htbp]
\centering
\caption{Zusammensetzung der Proben}
\begin{tabular}{cccc}
\toprule
\multirow{2}{*}{Probe} & [TRA-Puffer 2.5$\frac{\text{mg}}{\text{ml}}$ Lipase] & [Gummi-Arabicum-Lösung] & [Speiseöl]\\
& = \si{\ml} & = \si{\ml} & = \si{\ml} \\
\midrule
1 & 5 & 20 & 0.03 \\
\bottomrule
\end{tabular}%
\label{tab:Zusammensetzung}%
\end{table}%
这渲染得很好
\begin{table}[htbp]
\centering
\caption{Zusammensetzung der Proben}
\begin{tabular}{ccc}
\toprule
[TRA-Puffer 2.5$\frac{\text{mg}}{\text{ml}}$ Lipase] & [Gummi-Arabicum-Lösung] & [Speiseöl]\\
= \si{\ml} & = \si{\ml} & = \si{\ml} \\
\midrule
5 & 20 & 0.03 \\
\bottomrule
\end{tabular}%
\label{tab:Zusammensetzung}%
\end{table}%
使用此代码,我无法渲染包含此表的 .tex。有什么想法吗?
答案1
使用括号将表达式括在方括号内,以防止它被用作换行命令的可选参数:
\documentclass{article}
\usepackage{booktabs,siunitx}
\begin{document}
\begin{table}[htbp]
\centering
\caption{Zusammensetzung der Proben}
\begin{tabular}{ccc}
\toprule
{[TRA-Puffer 2.5$\frac{\text{mg}}{\text{ml}}$ Lipase]} & [Gummi-Arabicum-Lösung] & [Speiseöl]\\
= \si{\ml} & = \si{\ml} & = \si{\ml} \\
\midrule
5 & 20 & 0.03 \\
\bottomrule
\end{tabular}%
\label{tab:Zusammensetzung}%
\end{table}%
\end{document}