我正在尝试编写一个公式,然后对其进行编号 (5)。公式应居中对齐,编号应在同一行右对齐。这是我最好的尝试,但是当 flushright 环境开始时,它会开始一个新行,因此文本和公式不会出现在同一行。有没有巧妙的方法可以做到这一点?
\begin{center} $1-\alpha$
\begin{flushright}(5)
\end{flushright}
\end{center}
答案1
正如 Werner 和 Gonzalo Medina 所说,只需使用
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\noindent Horse, horse, horse, horse, horse, horse, horse, horse, horse, horse, horse, horse, horse.
\begin{equation}
1-\alpha \tag{5}
\end{equation}
Horse, horse, horse, horse, horse, horse, horse, horse, horse, horse, horse, horse, horse.
\end{document}