我对 Latex 还很陌生,我想知道以下两者之间有什么区别:
\begin{equation}
\end{equation}
和
\begin{equation*}
\end{equation*}
我一直使用第一个,但在什么情况下会使用后者,或者它们之间有什么区别?
我无法在该论坛上找到该问题的任何答案。
答案1
\label
无星号版本提供带编号的公式,您可以使用和轻松引用\ref
。带星号版本不提供公式编号,但格式相同,并在 中有等效项\[ ... \]
。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
The non-starred version provides a numbered equation, which you can easily refer to with \verb^\ref^, like so: \ref{euler}
\begin{equation}
e^{i\pi} + 1 = 0
\label{euler}
\end{equation}
The starred version does not provide the equation number, while keeping the same format.
\begin{equation*}
e^{i\pi} + 1 = 0
\end{equation*}
Unnumbered, displayed equations can also be obtained with \verb^\[ ... \]^.
\[
e^{i\pi} + 1 = 0
\]
\end{document}