背面缺少 $

背面缺少 $

所以我又见面了,

几分钟前我问了一个问题,几分钟后就得到了很好的答案。因此,我受到鼓舞,继续问更多问题。谢谢大家的帮助。

所以我得到了此代码缺少 $ 插入错误。我在哪里缺少 $?

\begin{tabular}[c]{@{}c@{}}0-56\[^{\circ }\] (85\% of the population)\\ 0-27\[^{\circ }
\] (15\% of the population)\end{tabular} & 5-73\[^{\circ }\] & 0-100\[^{\circ }\]   & 0-105\[^{\circ }
\]   & 0-85\[^{\circ }\]  \\ \hline
\end{tabular} \label{tablo}
\end{center}
\end{table} 

我基本上想生成一个小表格。

另外,我还有一堆方程式需要转换为 Latex 代码。我尝试了 MathType,它对大多数情况都很好用,但似乎仍然输出错误的代码。你们还有其他建议吗?

提前致谢。

答案1

您最好使用 siunitx 来输入:

\documentclass{book}
\usepackage{siunitx}
\sisetup{range-phrase = --, range-units=single}
\begin{document}

\begin{table}
\begin{center}
\begin{tabular}[c]{@{}c@{}}
\SIrange{0}{56}{\degree} (\SI{85}{\percent} of the population)\\
\SIrange{0}{27}{\degree} (\SI{15}{\percent} of the population)\\
\hline
\end{tabular} \label{tablo}
\end{center}
\end{table}

\end{document}

在此处输入图片描述

答案2

中存在许多格式错误MWE\[...\]代码应该用于无编号显示数学,$...$用于内联数学,请参考MWE以下修改:

\documentclass{book}
\begin{document}

\begin{table}
\begin{center}
\begin{tabular}[c]{@{}c@{}}
0-56$^{\circ }$ (85\% of the population)\\ 
0-27$^{\circ }$ (15\% of the population)\\
5-73$^{\circ }$ \\
 0-100$^{\circ }$\\
0-105$^{\circ }$\\
0-85$^{\circ }$  \\ 
\hline
\end{tabular} \label{tablo}
\end{center}
\end{table}

\end{document}

另外您没有提供完整的MWE,因此我使用了标准book类文件......

相关内容