Im Screenshot unten möchte ich ein weiteres Tag hinzufügen, und zwar by (a)
für die Gleichung, die bereits mit getaggt ist (1)
. Wie kann ich das erreichen?
Hier ist mein Code zu diesem Teil:
\begin{align*}
\\&= 2 A\bigl( v^1,v^2,v^3,v^4 \bigr)
+ 2 A\bigl( v^1,v^4,v^3,v^2 \bigr)
+ 2 A\bigl( v^1,v^2,v^1,v^4 \bigr) + 2 A\bigl(v^1,v^2,v^3,v^2 \bigr) \\
&\phantom{{}= }+ 2 A\bigl(v^1,v^4,v^3,v^4 \bigr) + 2 A\bigl( v^3,v^2,v^3,v^4 \bigr). \tag{1}
\end{align*}
Hinweis: Meine Präambel ist die Standardpräambel und ich verwende die article
Dokumentklasse.
Antwort1
Es handelt sich nicht um ein Tag, sondern um eine Texterklärung:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
x&=y
\\
&= 2 A( v^1,v^2,v^3,v^4 )
+ 2 A( v^1,v^4,v^3,v^2 ) \\
&\quad+ 2 A( v^1,v^2,v^1,v^4 )
+ 2 A(v^1,v^2,v^3,v^2 ) \\
&\quad+ 2 A(v^1,v^4,v^3,v^4 ) + 2 A( v^3,v^2,v^3,v^4 ).
&&\text{by (a)} \tag{1}
\end{align*}
\end{document}
Antwort2
Dabei wird ein einzelnes Tag mit zwei Elementen darin verwendet. Die Änderung \theequation
ist einfacher, behandelt aber die äußeren Klammern anders als die inneren. Die letzte Version schließt nicht beide Teile in das ein \ref
.
\documentclass{article}
\usepackage{amsmath}
\usepackage{showframe}
\usepackage{hyperref}
\newcommand{\flalignbalance}{\hphantom{(\theequation)}\hskip\mintagsep}
\begin{document}
This should link to \ref{test}, \eqref{test2} and \ref{test3}
\vfill
This uses \verb$\tag*$
\begin{equation}
\stepcounter{equation}\label{test}
x=a \tag*{(a) (\theequation)}
\end{equation}
\vfill
\bgroup
\renewcommand{\theequation}{a) (\arabic{equation}}
This reformats \verb$\theequation$.
\begin{equation}\label{test2}
y=b
\end{equation}
\egroup
\vfill
This uses \texttt{flalign}. \verb$\flalignbalance$ is used to center the equation.
\begin{flalign}\label{test3}
\flalignbalance&& z&=c &\llap{(a)}
\end{flalign}
\end{document}