我有一个数学方程$$P(N) = \frac{N!}{(n_r)!(n_l)!} \cdot p_l^{n_r} \cdot p_r^{n_l}$$
,我想将此方程标记为方程 1。我尝试\hfill Eq 1.1
在方程中输入类似以下内容的内容$$P(N) = \frac{N!}{(n_r)!(n_l)!} \cdot p_l^{n_r} \cdot p_r^{n_l} \hfill{\text{Eq 1.1}} $$
。这似乎不起作用。有没有更简单的方法可以做到这一点,或者我该如何解决这个问题?
答案1
您可以使用\usepackage{amsmath}
。公式环境是equation
(仅一行) 或align
。
梅威瑟:
\documentclass[10pt,a4paper]{article}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\begin{document}
\begin{align}
P(N) = \frac{N!}{(n_r)!(n_l)!} \cdot p_l^{n_r} \cdot p_r^{n_l} \\
P(N) = \frac{N!}{(n_r)!(n_l)!} \cdot p_l^{n_r} \cdot p_r^{n_l}
\end{align}
\begin{equation}
P(N) = \frac{N!}{(n_r)!(n_l)!} \cdot p_l^{n_r} \cdot p_r^{n_l}
\end{equation}
\end{document}