我有几行想要编号,我希望得到如下内容:
文本... \alignright{1} 或类似内容(如果存在)以产生
文本1)
答案1
文字中的数学也可以放在方程环境中,例如:
\documentclass{article}
\usepackage{amstext}%
% or \usepackage{amstext} that defines \text and is loaded by amsmath
\usepackage{lipsum}
\begin{document}
\lipsum[47]
\begin{equation}
\text{Centered text with equation number.}
\end{equation}
\end{document}