latex右上角标怎么设置,完整代码
时间: 2023-06-13 07:03:27 浏览: 1119
Short Math Guide for LATEX
在 LaTeX 中,右上角标可以使用 `_` 和 `^` 来设置下标和上标,例如:`$x_{1}$` 表示 `x` 的下标为 `1`,`$x^{2}$` 表示 `x` 的上标为 `2`。如果需要同时设置上下标,可以使用 `{}` 将上下标括起来,例如:`$x_{1}^{2}$` 表示 `x` 的下标为 `1`,上标为 `2`。
以下是一个完整的例子:
```latex
\documentclass{article}
\begin{document}
$x_{1}^{2}$
\end{document}
```
输出结果如下:
![latex-subsuperscript](https://i.imgur.com/5B3V4kN.png)
阅读全文