Welcome to part 4 in a series of questions about me trying to improve my crazy layout!
I'm using tabu to create a table with a central heading, and two small blocks of text on the left and right which are vertically centered.
Now I'd like to add a small subheading — but the main heading should still be vertically centered with respect to the left and right text blocks. Here's the starting point:

\documentclass{article}
\usepackage{tabu}
\begin{document}
\noindent
\begin{tabu}{|X[m,c]|X[-2,m,c]|X[m,c]|} \tabucline \\
\scriptsize This is something \linebreak on the left
&
\Huge Here's a Title
&
\scriptsize And here's some stuff \linebreak on the \linebreak right side
\\ \tabucline \\
\end{tabu}
\end{document}
When I use
\Huge Here's a Title \linebreak \normalsize And a subtitle!
I get this:

Clearly the centering is preserved overall, but I don't want the subtitle to contribute to the positioning. So I tried \smash:
\Huge Here's a Title \smash{\linebreak \normalsize And a subtitle!}
But the result is no better (in fact, it's worse):

(And I tried some other arrangements too, to no avail.) Is there any way to do this, or am I crazy for trying?








\tabucline? Do you want it below that perhaps? – Peter Grill Oct 09 '12 at 07:33\tabucline, I don't care about that). – jtbandes Oct 09 '12 at 08:08