Math & Science ⇒ How to typeset several "full-size" equations inside one
How to typeset several "full-size" equations inside one
I need to typeset a "case" statement of the type "A = { ...", where "..." consists of 2 lines of equations with their respective conditions. If I use the "\begin{array} ... \end{array}" inside the equation environment, my fractions are dwarfed like within the $...$ environment in text, and I want the equations to retain their full size, like within the \[...\] environment or "\begin{equation}...\end{equation}". Anyone know how to accomplish that?
-Denis
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
How to typeset several "full-size" equations inside one
you could use the cases environment provided by the amsmath package; it is described in page 8 of the amsmath user guide. For the fractions issue, you can use the \dfrac command.
How to typeset several "full-size" equations inside one
Thank you for the reply. It appears that aligned might do the job, since they say it figures the width for the contents and not to a line width. They don't mention anything about that for cases...gmedina wrote: you could use the cases environment provided by the amsmath package; it is described in page 8 of the amsmath user guide. For the fractions issue, you can use the \dfrac command.
Re: How to typeset several "full-size" equations inside one
How to typeset several "full-size" equations inside one
aligned does the full-size scaling too, but it's not really for case statements, since the alignment is not to the left bracket but instead about some center point.