views:

20

answers:

1

I have long table of pictures and descriptions (I use longtable environment to get it in several columns on page). I want this to be splitted past picture, not between middle title and picture. My table is somethink like this:

\multicolumn{3}{2}{description} \\
\includegraphics[]{} &
\includegraphics[]{} &
\includegraphics[]{} \\
\multicolumn{3}{2}{description} \\
\includegraphics[]{} &
\includegraphics[]{} &
\includegraphics[]{} \\
...

I want LaTeX to split this between pages before \multicolumn, not between \multicolumn and \includegraphics. Is there possibility to do this or I should try another way?

I was try to use \multirow{3}{*}{ } to stick rows but it isn't work.

A: 

Standard longtable documentation says that \\* is "The same as \\ but disallows a page break after the row."

squadette
Today I found \\\* in LaTeX documentation (lshort). It works and I think it's the best answer.
sfp
Great! Then, mark the answer as "accepted" :)
squadette