The starred versions take the numbering off the 'parent' equation.
In the end, I hacked together a macro using \raisebox and \makebox commands... it's not pretty, but it works:
\newcommand{\MatrixSplitEqn}[2]
{\makebox{\raisebox{\height}{\makebox[0.4\width][l]{$#1$}}
\raisebox{-\height}{\makebox ...
Search found 3 matches
- Tue Mar 16, 2010 6:15 pm
- Forum: Math & Science
- Topic: Multline in matrix cells
- Replies: 4
- Views: 3663
- Tue Mar 16, 2010 5:21 pm
- Forum: Math & Science
- Topic: Multline in matrix cells
- Replies: 4
- Views: 3663
Re: Multline in matrix cells
Thanks for the hint. It gets close to what I want, however inserting another math environment screws up the numbering of the equations. I'll have a play and see if I can get it working...
- Tue Mar 16, 2010 1:53 pm
- Forum: Math & Science
- Topic: Multline in matrix cells
- Replies: 4
- Views: 3663
Multline in matrix cells
I have a rotation matrix with some particularly lengthy elements (lots of sin and cos terms). What I'd ideally like to do is to break these terms into two parts so that it's more compact, much like the multline environment. Of course, this environment can't be used if you're already in math mode. I ...