latex 取消公式编号
时间: 2023-09-08 14:15:09 浏览: 431
latex Algorithms伪代码规范
5星 · 资源好评率100%
在 LaTeX 中,如果你想取消公式的编号,可以使用`\begin{equation*}`和`\end{equation*}`来代替`\begin{equation}`和`\end{equation}`,或者在`\begin{equation}`和`\end{equation}`之间添加`\nonumber`命令。具体方法如下:
使用`equation*`环境:
```
\begin{equation*}
y = mx + b
\end{equation*}
```
使用`\nonumber`命令:
```
\begin{equation}
y = mx + b \nonumber
\end{equation}
```
以上两种方法都可以取消公式的自动编号。
阅读全文