Latex Table 给我一个错误:缺少$插入

Latex Table 给我一个错误:缺少$插入
\begin{table}
    \begin{tabular}{|c|c|c|c|c|}
    \hline
    \multicolumn{5}{|c|}{\textbf{Table 1:}Unfiltered Water}\\
    Concentration of analyte in sample   & Avg & Std Dev &  RSD & 90\% CI \\ 
    \hline
    Total hardness (ppm $CaCo_3$ equiv)  & 97  &    2   &  2\%  & \pm 5   \\
    Calcium hardness (ppm $Ca^{2+}$)     & 57  &    3   &  5\%  &  \pm 5   \\
    Magnesium hardness( ppm $Mg^{2+}$)   & 40  &    3   & 7.5\% &  \pm 5 \\
    \hline
    \end{tabular}

此表给出了错误。它表示

! Missing $ inserted.
<inserted text>
$
l.41 ...Co_3 equiv\) & 97 & 2 & 2\% & \pm
5 \I've inserted a begin-math/end-math symbol since I think

你漏掉了一个。继续,祝你好运。

此错误的原因是什么?我似乎找不到任何不匹配的东西。

答案1

使用\pm需要数学模式,因此您应该使用$\pm 5$

这是使用以下方式查看您的表格的完整替代视图booktabs(为了披萨……)caption(用于字幕格式)和mhchem(用于化学公式设置):

在此处输入图片描述

\documentclass{article}
\usepackage{booktabs,caption,mhchem}
\captionsetup{labelfont=bf, textfont=normalfont}
\begin{document}
\begin{table}
  \caption{Unfiltered water}
  \begin{tabular}{*{5}{c}}
    \toprule
    Concentration of analyte in sample   & Avg & Std Dev &  RSD             &  90\% CI \\ 
    \midrule
    Total hardness (ppm \ce{CaCo_3} equiv)  & 97  &    2    &  \phantom{0.}2\% & $\pm 5$  \\
    Calcium hardness (ppm \ce{Ca^{2+}})     & 57  &    3    &  \phantom{0.}5\% & $\pm 5$  \\
    Magnesium hardness (ppm \ce{Mg^{2+}})   & 40  &    3    &            7.5\% & $\pm 5$  \\
    \bottomrule
  \end{tabular}
\end{table}

\end{document}

原来的:

在此处输入图片描述

相关内容