[texhax] Tabular problem

Lars Madsen daleif at imf.au.dk
Fri Mar 18 18:00:27 CET 2011


Michael Barr wrote:
> Here is a minimal file to illustrate it:
> 
> \documentclass{article}
> \begin{document}
> \begin{tabular}{c}
> 1\\
> 2\\
> 3\\
> \end{tabular}}
> \begin{tabular}{c}
> 1\\
> \end{tabular}
> \end{document}
> 
> What I want is for the second tabular to be top aligned with the first. 
> There is a reason, which I won't go into, why I want two separate 
> environments like that.  I could not find any combination of \hbox and 
> \vbox (or \vtop) which would do that.
> 
> Michael
> _______________________________________________
> TeX FAQ: http://www.tex.ac.uk/faq
> Mailing list archives: http://tug.org/pipermail/texhax/
> More links: http://tug.org/begin.html
> 
> Automated subscription management: http://tug.org/mailman/listinfo/texhax
> Human mailing list managers: postmaster at tug.org


why so much trouble, doesn't


\documentclass{article}
\begin{document}
\begin{tabular}[t]{c}
1\\
2\\
3\\
\end{tabular}
\begin{tabular}[t]{c}
1\\
\end{tabular}
\end{document}

do what you need?



-- 

/daleif


More information about the texhax mailing list