I am using tabular, and I would like to realize something like that:
word1 word2 word3
word4 longerword5
word6 word7 word8
So word1,2,3,4,6,7,8 are well aligned, and I do not want longerword5 to be taken into account for spacing in other rows. Could anyone tell me how to do that?
longerword5to\multicolumn{2}{l}{longerword5}to make it span over two columns ({2}), left aligned ({l}) or write it as\rlap{longerword5}so that its width is ignored. – Martin Scharrer♦ May 20 '11 at 17:11\rlapis a macro for the cognoscenti; a more orthodox LaTeX is\makebox[0pt][l]{longerword5}. – egreg May 20 '11 at 18:04