如何在Jupyter Notebook中做上标和下标?

How to do superscripts and subscripts in Jupyter Notebook?

我想在脚注中使用数字表示引用,所以我想知道在 Jupyter Notebook 内部如何使用上标和下标?

您可以在 markdown cell. A markdown cell can be created by selecting a cell then pressing the esc key followed by the M key. You can tell when you have converted a cell to markdown when In [ ]: seen to the right of the default code cell is gone. Then you can input the following code that uses latex with markdown 中执行此操作以表示 sub/super-scripts:

Latex subscript:

$x_{2}$

Latex superscript:

$x^{2}$

您可以找到更详细的示例 here

如果您还有困难,请在下面评论。

可以使用HTML'上标'

http://wikimarkup.wikia.com/wiki/How_to_superscript_text

您也可以使用 Latex $foo^{superscript}$,但用于呈现文本的字体会发生变化,您可能不喜欢它的外观。

<sup>superscript text </sup> 也可以,而且可能会更好,因为乳胶格式会更改整行等。

真是个元问题!需要使用 Markdown 来回答 Markdown 语法问题。 Markdown 确实有 <sup></sup><sub></sub> 标签,它们将分别在当前块的字体中将文本调整为上标或下标。如果您使用脚本进行数学陈述 like this LaTeX 转换是有道理的。如果您使用脚注或化学公式之类的脚本(例如 H2O),使用第一种方法可能比 LaTeX 更可取。混合字体通常不被认为是好的 graphics/typography 做法!