I have tried repeatedly to google for the solution to this problem. I have a matrix that looks like this. 
But I want it to look like this. 
Notice how the B, C, D and E are "very tightly centered" around the A. Here is my code.
\documentclass[12pt,a4paper]{article} \usepackage{amsmath} \begin{document} \newcommand{\matt}[5] { $ \begin{bmatrix} \begin{array}{ c c c } \begin{bmatrix} 2+r & -1 \\ -1 & 2+r & -1 \\ & \ddots & \ddots & \ddots \\ & & \ddots & \ddots & \ddots \\ & & & -1 & 2+r & -1 \\ & & & & -1 & 2+r \\ \end{bmatrix} & {#3} & \\ {#4} & {#1} & {#2} \\ & {#5} & \begin{bmatrix} 2+r & -1 \\ -1 & 2+r & -1 \\ & \ddots & \ddots & \ddots \\ & & \ddots & \ddots & \ddots \\ & & & -1 & 2+r & -1 \\ & & & & -1 & 2+r \\ \end{bmatrix} \\ \end{array} \end{bmatrix} $ } \matt {A} {B} {C} {D} {E} \end{document} Any thoughts?
Thanks, Bob.

