Math & Science ⇒ Multline in matrix cells
Multline in matrix cells
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
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Multline in matrix cells
you could use \parbox inside the matrix, inside a \parbox you can use multiline math environments.
Stefan
Re: Multline in matrix cells
Multline in matrix cells
Even with the starred versions?mrchemist wrote:Thanks for the hint. It gets close to what I want, however inserting another math environment screws up the numbering of the equations.
Multline in matrix cells
In the end, I hacked together a macro using \raisebox and \makebox commands... it's not pretty, but it works:
Code: Select all
\newcommand{\MatrixSplitEqn}[2]
{\makebox{\raisebox{\height}{\makebox[0.4\width][l]{$#1$}}
\raisebox{-\height}{\makebox{$#2$}}}\vspace{5pt}}