在 TeX Live 2023 中编译以下文档时,我收到错误Missing $ inserted
:
\documentclass{standalone}
\begin{document}
$$(x_1, x_d)$$
\end{document}
问:这是一个错误还是我遗漏了有关 LaTeX 的某些内容?
请注意,它适用于单美元分隔符。
提前感谢您的回答!
答案1
没有错误,因为它是记录的行为。
您永远不应该
$$
在 LaTeX 文档中使用。默认情况下,
standalone
基本上不允许\mbox{<contents>}
在内部显示数学运算\mbox
。做就是了
$\displaystyle<formula>$
\documentclass{standalone}
\begin{document}
$\displaystyle (x_1, x_d)$
\end{document}