I have a list of equations with annotations like the one below:
\documentclass{scrartcl}
\usepackage{amsmath}
\begin{document}
\begin{align}
aaaa &= 1 &&\text{for $X$} \\
bbbb &= 1 &&\text{for $Y$} \\
c &= 1 &&\text{for $Z$} \\
d &= 12 &&\text{for $Z$}
\end{align}
\end{document}
Since the last two lines have the same annotation, I'd like to add a brace there and put the annotation next to the brace, like so:
\documentclass{scrartcl}
\usepackage{amsmath}
\begin{document}
\begin{align}
\left. \begin{aligned}
c &= 1 \\
d &= 12 \\
\end{aligned} \right\} &&\text{for $Z$}
\end{align}
\end{document}
Plugging that into the original code gives me something along the lines of
\documentclass{scrartcl}
\usepackage{amsmath}
\begin{document}
\begin{align}
aaaa &= 1 &&\text{for $X$} \\
bbbb &= 1 &&\text{for $Y$} \\
\left. \begin{aligned}
c &= 1 \\
d &= 12 \\
\end{aligned} \right\}& &&\text{for $Z$}
\end{align}
\end{document}
What doesn't work is the alignment of the equals signs: I can only align the ones inside the aligned environment with eachother, not the ones outside.
I'd also like the align environment to treat the content as three lines and number it as such.
This is a follow-up question to Q: Align inside align in which a solution to the problem without line numbering was given; a similar problem was discussed in Q: Aligning across 'aligned' equation blocks — the solution used an array environment, however, and thus also does not allow for line numbering afaict.
Thanks in advance.
Best Answer
The solution to the question pointed out by Barbara Beeton is close to the right idea. In fact, you could use that solution by putting each object you wish to have numbered in its own
aligned
. However, that is quite a bit of work and the following variation seems to function well enough:You will need to call
\setmyleftlen
with the longest lefthand side in youraligned
environment before thealign
starts. What the code does is move thealigned
block left this amount plus an extra7mu
. The amount7mu
was a guess, but seems to fit with some other values used by the AMS math commands. Being expressed inmu
(math units) it will scale well to other point sizes.