Size: 808
Comment: missing edit-log entry for this revision
|
← Revision 3 as of 2008-02-19 15:39:22 ⇥
Size: 824
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:
http://www.nerc-essc.ac.uk/~dwcp/Latex/ (more up-to-date, and UK-hosted, version of the above)
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}