latex中如何既给公式标号又让公式居中
时间: 2023-11-06 18:07:01 浏览: 1300
在 Word 中写出像 LaTeX 一样的公式
你可以使用以下代码将 LaTeX 中的公式居中并对其进行编号:
```
\begin{equation}
<your equation here>
\end{equation}
```
其中,<your equation here> 是你要输入的公式。使用 `equation` 环境可以将公式居中,并在公式后面自动编号。如果需要引用该公式,可以使用 `\ref{<label>}` 命令引用其编号,其中 `<label>` 为公式的标签。
如果你不想让公式居中,可以使用以下代码将公式标号:
```
\begin{equation}
\begin{aligned}
<your equation here>
\end{aligned}
\end{equation}
```
其中,`aligned` 环境会将公式对齐,并在公式后面自动编号。
阅读全文