Latex 缺少 $ 帮助

Latex 缺少 $ 帮助
How much glucose $(C_6H_{12}O_6)$ per liter should be used for an intravenous solution
to match the $7.65$ atm at $37 °C$ osmotic pressure of blood?

这个 LaTeX 代码有什么问题?我搞不懂,它说缺少插入的 $。

答案1

  • 化学:如果在数学模式下使用,原子的字母将设置为数学斜体。我会使用专用包(例如,示例使用chemmacros)来正确排版化学式。

  • 数字和单位:示例使用siunitx带有单位的数字包。该包负责处理符号(摄氏度)、数字和单位之间的间距,并防止在单位前出现换行符。

示例文件:

\documentclass{article}
\usepackage{chemmacros}
\usepackage{siunitx}
\DeclareSIUnit\atm{atm}
\begin{document}
How much glucose (\ch{C_6H_{12}O_6}) per liter should be used for an
intravenous solution to match the \SI{7.65}{\atm} at \SI{37}{\celsius}
osmotic pressure of
blood?
\end{document}

结果

相关内容