latex公式取消编号
时间: 2023-09-15 12:23:12 浏览: 316
latex Algorithms伪代码规范
5星 · 资源好评率100%
如果你想在LaTeX中取消公式编号,可以使用`\begin{equation*}`和`\end{equation*}`代替`\begin{equation}`和`\end{equation}`。如果你想取消所有公式的编号,可以在文档类声明中添加`[fleqn]`选项。例如:
```
\documentclass[fleqn]{article}
\usepackage{amsmath}
\begin{document}
Here is an unnumbered equation:
\begin{equation*}
f(x) = x^2 + 2x + 1
\end{equation*}
And here is a numbered equation:
\begin{equation}
g(x) = \frac{1}{x}
\end{equation}
\end{document}
```
阅读全文