Math & Science ⇒ (solved) Aligned equations, individually numbered, all inside one pair of delimiters?
(solved) Aligned equations, individually numbered, all inside one pair of delimiters?
So, I am trying to make a bunch of equations that are aligned, individually automatically numbered, and all of them neatly packaged into an arbitrary set of delimiters. As they say, a picture is worth a thousand words; so, please see the attached image for a (very) schematic example of what I am trying to achieve.
Any ideas on how to do this would be kindly appreciated.
p.s. solution found here.
- Attachments
-
- math-visual-example.png (25.43 KiB) Viewed 9858 times
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
- Ijon Tichy
- Posts: 640
- Joined: Mon Dec 24, 2018 10:12 am
(solved) Aligned equations, individually numbered, all inside one pair of delimiters?

(solved) Aligned equations, individually numbered, all inside one pair of delimiters?
Many thanks. May I ask for some further explanation? I looked through the (rather concise) manual for the package cases, and I couldn't figure out how to customize the alignment. The expressions (left part of the cases environment) seem to be invariably left-aligned, and the explanations (right part of the environment) form another left-aligned column, with unnecessarily wide horizontal gap. My example renders like this:Ijon Tichy wrote:→ https://latex.org/forum/viewtopic.php?p=93527#p93527
Code: Select all
\documentclass[]{article}\usepackage{cases}\begin{document}\begin{numcases}{}e \approx 2.72 \\\pi \approx 3.14 \\e\pi \approx 8.5397\end{numcases}\begin{numcases}{}e & $ \approx 2.72 $ \\\pi & $ \approx 3.14 $ \\e\pi & $ \approx 8.5397 $\end{numcases}\end{document}
- Attachments
-
- Screenshot_20191203_194751.png (18.83 KiB) Viewed 9849 times
(solved) Aligned equations, individually numbered, all inside one pair of delimiters?
Code: Select all
\documentclass[]{article}\usepackage{amsmath}\usepackage{empheq}\begin{document}\begin{subequations}\begin{empheq} [left=\empheqlbrace] {align}e & \approx 2.72 \\\pi & \approx 3.14 \\e\pi & \approx 8.5397\end{empheq}\end{subequations}\end{document}