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 10207 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- 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 10198 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}