如何在等式 Jupyter 笔记本的文本中添加 space?

How to add space in text of the equation Jupyter notebook?

我想在 Jupyter notebook 的 markdown 单元格中写一个等式,其中包含带有 space 的文本。我试着写了以下内容。

\begin{equation*}
e^{i\pi} + 1 + some text = 0
\end{equation*}

结果是这样的。

如何在“some”和“text”之间添加space?谢谢。

您可以尝试将文本换行为 \text{}

\begin{equation}
e^{i\pi} + 1 + \text{some text} = 0
\end{equation}

注意:这更像是一个乳胶问题,您可以从 here.

获得答案

此外,您可以考虑使用“\”和“\quad”指令在 LaTeX 环境中的元素之间添加水平 space,还有“\hskip”。