在对齐环境中,我的标签位于右侧,这很好。但在某些段落中,我想将标签放在左侧。我该怎么做?
答案1
定义\leqnomode
,然后在本地使用它。
\documentclass{article}
\usepackage{amsmath}
\makeatletter
\newcommand{\leqnomode}{\tagsleft@true\let\veqno\@@leqno}
%\newcommand{\reqnomode}{\tagsleft@false\let\veqno\@@eqno}
\makeatother
\begin{document}
\begin{align}
f(x) &= ax^2 + bx + c \\
g(x) &= dx^2 + ex + f
\end{align}
\begin{equation}\leqnomode
-\Delta\phi=4\pi k\rho.
\end{equation}
\begin{equation}
a^2+b^2=c^2.
\end{equation}
\end{document}
顺便说一句,下次提问时请给出一个最小的工作示例,以便其他人方便地回答。