Differences between revisions 2 and 3
Revision 2 as of 2002-05-28 11:59:07
Size: 824
Editor: SimonHuggins
Comment:
Revision 3 as of 2008-02-19 15:39:22
Size: 824
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
CategoryComputingTips > ["LaTeXCompTips"] CategoryComputingTips > [[LaTeXCompTips]]

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)