I want to to use numbers to indicate references in footnotes, so I was wondering inside of Jupyter Notebook how can I use superscripts and subscripts?
Advertisement
Answer
You can do this inside of a 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 to represent sub/super-scripts:
JavaScript
x
8
1
Latex subscript:
2
3
$x_{2}$
4
5
Latex superscript:
6
7
$x^{2}$
8
You can find more detailed examples here.
Please comment below if you are still having difficulty.