我正在使用mathtools
,只有refeq
方程式实际上得到一个数字。
但是,有几个方程式,我希望方程式编号出现在右边,或者更准确地说,我自己决定它们出现在哪里。
有没有办法做到这一点,以便我在特定的对齐环境中添加我想要的方程编号,但而且当我使用 引用它们时refeq
,它们不会出现在左侧?
编辑,MWE:
\documentclass{article}
\usepackage{fullpage,times,color,hyperref}
\usepackage{amsmath,amsthm,amssymb}
\usepackage{natbib}
\usepackage{mathtools}
\usepackage{qtree}
\bibliographystyle{plainnat}
\mathtoolsset{showonlyrefs,showmanualtags}
\begin{document}
\begin{align}
aaa \label{eq1}
\end{align}
(Look at equation ~\refeq{eq1}.)
I would want it to look more like:
\begin{align}
(1)\,\,\,\,\, & aaa
\end{align}
only it should be far to the left, and only for a *single* align environment (or a few).
\end{document}