如何列举数学模式中的问题?

如何列举数学模式中的问题?

我在 overleaf.com 上写作并尝试了 \tag#,其中是方程的编号。这正是我所做的:$$E=\vec p^2+m^2 \tag1$$。关于如何做到这一点,有什么想法吗?

附言:我应该说我不确定这是否真的是数学模式。我只是重复了我在物理和数学 stackexchange 页面上看到的所有内容,这是它第一次不起作用。

答案1

物理学数学都使用 MathJax 来呈现其数学内容。这需要使用以下语法

$$
  <math>
$$

用于显示数学内容,以及$<math>$用于内联数学内容。虽然这适用于 MathJax,但您还需要更多才能使用 Overleaf 编写带有标签的方程式:

在此处输入图片描述

\documentclass{article}

\usepackage{amsmath}

\setlength{\parindent}{0pt}% Just for this example

\begin{document}

Display equation without label:
\[
  f(x) = ax^2 + bx + c
\]
The above is similar to
\begin{equation*}
  f(x) = ax^2 + bx + c.
\end{equation*}

Display equation with label to \eqref{eqn:quadratic1}:
\begin{equation}
  f(x) = ax^2 + bx + c \label{eqn:quadratic1}
\end{equation}

Display equation with custom label to \eqref{eqn:quadratic2}:
\begin{equation}
  f(x) = ax^2 + bx + c \tag{quadratic} \label{eqn:quadratic2}
\end{equation}

\end{document}

相关内容