CategoryComputingTips > LaTeXCompTips

LaTeX Tips

Resources

Resources I've found useful are:


Tables that fill the page

Using tabularx you can get tables that fill the width of the page and automatically assign space for the columns without having to specify a parbox of such and such a width.

Just use X for the dynamic columns and specify the width of the table as \textwidth

\begin{tabularx}{\textwidth}{lX}
foo & lots of text here that wraps and goes over the line length \\
bar & Look another one! \\
\end{tabularx}

TheEarthWiki: LaTeXCompTips (last edited 2008-02-19 15:39:22 by localhost)