Does anyone know how to have split behave nicely within a bmatrix/array/matrix environment?
I have a long entry in an N x 1 matrix environment. The long entry needs to be split across multiple lines to keep my matrix on the page. Specifically, I'm trying to use split to break a long line within a bmatrix environment. My problem is that using the split environment drastically increases the whitespace/width of the matrix.
Check out the behavior of the matrix example (below) when split is used inside bmatrix.
Any help appreciated,
Rhys
P.S. -- The usual solution to large-stuff-in-an-array problem, reducing the font size (http://www.latex-community.org/viewtopi ... trix#p4370), is something I'd like to avoid.
Code: Select all
\documentclass[letterpaper,11pt]{amsart}
\usepackage{fullpage}
\pagestyle{plain}
\begin{document}
\begin{align*}
\begin{bmatrix}
00 + 01 + 02 + 03 + 04 + 05 + 06 + 07 + 08 + 09
\\
10 + 11 + 12 + 13 + 14 + 15 + 16 + 17 + 18 + 19
\\
20 + 21 + 22 + 23 + 24 + 25 + 26 + 27 + 28 + 29
\\
30 + 31 + 32 + 33 + 34 + 35 + 36 + 37 + 38 + 39
\end{bmatrix}
\end{align*}
\begin{align*}
\begin{bmatrix}
00 + 01 + 02 + 03 + 04 + 05 + 06 + 07 + 08 + 09
\\
\begin{split}
10 + 11 + 12 + 13 + 14 + 15 &+ 16 + 17 + 18 + 19
\\
&+ 20 + 21 + 22 + 23 + 24 + 25 + 26 + 27 + 28 + 29
\end{split}
\\
30 + 31 + 32 + 33 + 34 + 35 + 36 + 37 + 38 + 39
\end{bmatrix}
\end{align*}
\end{document}