In the example below, what I would like is output like:
Bar
Baz Mumble
for the second heading with data below. Instead I am getting "Bar Baz Mumble" all on one line. I have tried a few things without success, including
Code: Select all
\documentclass[9pt,twocolumn]{article}
\usepackage{supertabular}
\usepackage{multirow}
\begin{document}
\tablefirsthead{%
\hline \\
\multicolumn{1}{c}{\textbf{Foo } \linebreak } &
\multicolumn{1}{c}{\multirow{2}{*}{\textbf{``Bar \linebreak Baz Mumble''}}} &
\\ \hline }
%This is the header for the remaining page(s) of the table...
\tablehead{%
\hline
\multicolumn{3}{c}{{\tablename} \thetable{} -- Continued} \\
\hline \\
\multicolumn{1}{c}{\textbf{Foo } \linebreak } &
\multicolumn{1}{c}{\multirow{2}{*}{\textbf{``Bar \linebreak Baz Mumble''}}} &
\\ \hline}
%This is the footer for all pages except the last page of the table...
\tabletail{%
\hline
\multicolumn{3}{l}{{Continued \ldots}} \\
}
\tablelasttail{\hline}
\begin{supertabular}{p{2.2cm} c }\hline
A & B \\
C & D \\
\hline
\end{supertabular}
\end{document}
...the \linebreak appears to be failing, at the very least.
Any suggestions? Thank you very much!