In the MWE that follows there are two longtables. The second longtable uses @{} to suppress the space to the left of its first column. The result is that a multicolumn which is to start in the first column, and span several columns, appears indented. The first longtable is given as comparison. The only difference between the two longtables is the @{} in the definition of the second.
I've attached a screenshot of the behaviour.
I'd like to be able to suppress the space to the left of the first column, and not have the multicolumn entry indented. Can I have the multicolumn entry flush with the left of the table?
I'm using PDFTeX in MikTeX 2.8 on Windows XP Pro.
Many thanks for any insights you can offer,
Alastair.
Code: Select all
\documentclass[]{report}
\usepackage{longtable}
\begin{document}
\begin{longtable}{ l l l l }
\hline
Aaaa & Bbbb & Cccc & Dddd \\
\multicolumn{4}{l}{Aaaaaaaaaaa}\\
Aaaa & Bbbb & Cccc & Dddd \\
\end{longtable}
\begin{longtable}{ @{} l l l l }
\hline
Aaaa & Bbbb & Cccc & Dddd \\
\multicolumn{4}{l}{Aaaaaaaaaaa}\\
Aaaa & Bbbb & Cccc & Dddd \\
\end{longtable}
\end{document}