\begin{equation} \label{eq2}
\centering
$\frac{d^2\sigma}{{d\Omega}{d\omega}}$ = $f( Q, \omega )$
\caption{}
\end{equation}
但这会导致 (1.2) 标签位于等式下方,而不是我想要的侧面。我在编写微分部分时遇到了很多问题。
答案1
您不应使用 either \centering
nor \caption{}
。方程式会自动居中并编号。
您的代码需要进行一些清理,例如$
在数学环境中,您不需要也不必使用它
例子
\documentclass{article}
\begin{document}
\begin{equation}\label{eq2}
\frac{d^2\sigma}{d\Omega d\omega}=f(Q,\omega)
\end{equation}
\end{document}
其结果为:
更多文字请查看其如何居中:
\documentclass{article}
\usepackage{lipsum}
\begin{document}
\lipsum[1]
\begin{equation}\label{eq2}
\frac{d^2\sigma}{d\Omega d\omega}=f(Q,\omega)
\end{equation}
\lipsum[1]
\end{document}
制作:
编辑
我按照建议修正了代码,没有按照@barbarabeeton 的建议在环境前留出空格equation
,以便有正确的间距并且不允许分页。