Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2002-04-02 22:46:06
Size: 808
Editor: anonymous
Comment: missing edit-log entry for this revision
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 2: Line 2:

CategoryComputingTips > [[LaTeXCompTips]]
Line 26: Line 29:

----
CategoryComputingTips

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)