I want to achieve the following visual output:
Code: Select all
nameeee_a := expr1a = expppr2a (2.1a)
name_b := exppppr1b = expr2b (2.1b)
I've read amsldoc and tried e.g. nesting aligned and subequation environments in different order, but I either get error messages or something else than the desired output.
One of my tries is the following code:
Code: Select all
\begin{equation*}
\begin{subequations} \label{ab}
\begin{aligned}
name_a &:= expr1a &= expr2a \label{a} \\
name_b &:= expr1b &= expr2a \label{b}
\end{aligned}
\end{subequations}
\end{equation*}
Using alginedat resulted in the equations not being centered but rather left-aligned on the page.
I see that I probably haven't understood how the different environments can be nested but I just don't find information about that in the documentation.
Could someone help me out?
Thanks.