Math & Science ⇒ using subequations with columns
using subequations with columns
w=4 (1a) a>b (2a)
x=a^2+b^2 (1b) a=2wt (2b)
y=c^2+d^2 (1c) where b=3ew (2c)
z=e^2+f^2 (1d) c=5 (2d)
q=t (1e)
Note:the 1a,1b,... are the subequation numbering (and I reference them later, so I need it to be the subequation numbering) and the "where" is centered. I cannot seem to get \begin{multicols} to accept subequations. I do not know how to get the "where" centered to where it is half way down in the second column. Any help would be much appreciated.
Lance
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Re: using subequations with columns
Did you try with minipage???
Cheers
using subequations with columns
Code: Select all
\begin{minipage}{0.3\textwidth}\begin{subequations}\begin{align}w&=4, \\x&=a^2+b^2, \\y&=c^2+d^2, \\z&=e^2+f^2, \\q&=t,\end{align}\end{subequations}\end{minipage}%\hfill where\hfill\begin{minipage}{0.3\textwidth}\begin{subequations}\begin{align}a&>b, \\a&=2wt, \\b&=3ew, \\c&=5.\end{align}\end{subequations}\end{minipage}