vote up 35 vote down star
49

What are some good practices when typesetting LaTeX documents?

I use LaTeX mostly to typeset papers. Here is a short list of what I consider LaTeX good practices, most of them would be common sense in any programming language:

  • When writing a large document (book), keep the chapters in separate files
  • Use a versioning system
  • Repeated code (i.e. piece of formula occurring many times) is evil. Use macros
  • Use macros to represent concepts, not to type less
  • Use long, descriptive names for macros, labels, and bibliographic entries
  • Use block comments
    %===================================
    to emphasize the beginning of sections and subsections
  • Comment out suppressed paragraphs, don't delete them yet
  • Don't format formulas (i.e. break them into many lines) until the final font size and page format are decided
  • Learn to use BibTex

Further question: What package/macro/whatever do you use to insert source code?

EDIT: corrected spelling from Latex to LaTeX. In your documents, you may want to use the \LaTeX macro.

flag

31 Answers

1 2 next
vote up 29 vote down

Put your files in source control. This makes it so you don't need to keep long comment blocks in as long.

It also can be helpful if you've written a large section that you decide to yank for the current publication, but that you'll want later (e.g. for a tech report or for a journal paper). Subversion-style tags can be especially helpful at times like this.

link|flag
1  
Source control would have saved me a ton of time. I had a laptop crash in the middle of writing my thesis. I didn't know anything about source control in those days. I'd give more points if I could. – Anthony Potts Oct 20 '08 at 14:19
show 1 more comment
vote up 22 vote down

Best tip/practice I ever got was this:

Use the fact that LaTeX is not WYSIWYG. When writing paragraphs, start each sentence at the beginning of a line, and if it spills over, each subsequent line is tabbed.

This helps you understand the structure of your paragraphs and identify materials in them very fast.

I've since written many documents with this practice and it was always effective.

link|flag
show 7 more comments
vote up 18 vote down

I could probably go on all day, but this seems like a good start.

# if you want to change the page margins:    
\usepackage[letterpaper]{geometry}
\geometry{top=1.0in, bottom=1.0in, left=1.5in, right=1.0in}

# greatly improved citation commands:    
\usepackage[longnamesfirst]{natbib}

# better looking tables with `\toprule`,`\midrule`,`\bottomrule`:
\usepackage{booktabs}

# make sure figures do not appear before their text:    
\usepackage{flafter}   

# if you're doing math:    
\usepackage{amsmath,amssymb,cancel,units}

# more control with verbatim ('unformated') environments:  
\usepackage{fancyvrb}
link|flag
show 2 more comments
vote up 13 vote down

Use a Makefile, or some other kind of build script to build your document from your sources. This may include generating plots or other graphics outside of the latex system. This becomes even more important if you need to rebuild the document from source at some later date (for example, you need to regenerate a paper with new data).

link|flag
show 2 more comments
vote up 12 vote down

This may not be the type of tip you are after but if you haven't already,take a look at LyX. It's an open-source word processor-like front end for LaTeX with lots of features built-in (version control, comments), very configurable and a good community.

I wrote my PhD thesis (all 220 1.5-spaced pages of it!) in LyX and found it much easier than straight LaTeX (I did my maths honours thesis in emacs + LaTeX). It's especially good at helping manage figures, tables and other fiddly environments. You can drop into straight LaTeX anytime you want and see a live preview of maths and graphics as you type.

I still use LaTeX (and TextMate) when collaborating with other LaTeX-only users but if I'm writing something by myself, LyX is my first choice.

link|flag
show 2 more comments
vote up 10 vote down

I created several unary commands to tag sections of text, such as \HighlightProblem, \ConsiderRemoving, \CollaborateWithCoauthor, etc. (I use acronyms, of course). These commands display the text in a different color.

When I watch the PDF, this helps me quickly see areas that need work.

In some cases, I use several "confidence level" tags, so that areas that are more "stable" appear in black or closer to black, while less stable areas appear in lighter grays.

link|flag
show 3 more comments
vote up 9 vote down

My top suggestion is to format LaTeX source the same way you would format source code as far as indention, lining up opening and closing braces, etc. People tend to put all the LaTeX source for an equation on one line, even though it may have 10 nested pairs of opening and closing groupings, and even if they'd never do anything like that in C. The most effective technique I know for debugging errors in LaTeX files is to simply format the source like I could C++ code. For example

$$
x = \frac
{
    -b \pm \sqrt{ b^2 - 4ac }
}
{
    2ac
}
$$

I put all the square root stuff on one line only because it's very short. But especially for the \frac command, extra white space really helps.

link|flag
3  
From LaTeX FAQ: While the double dollar sign (still) works in LaTeX, it is not part of the "official" LaTeX command set (in fact, most books on LaTeX don't even mention it) and its use is discouraged. Use the bracket pair "\[", "\]" instead.) – Hudson Jan 9 at 22:54
show 2 more comments
vote up 8 vote down

I highly recommend the short math guide which includes explicit best practices for typesetting math using AMSLatex (built in to any LaTeX installation).

It's pretty amazing -- 17 pages and it's all I've ever needed to know about typesetting math.

Best Practices Excerpts:

  • Don't use eqnarray as it "produces inconsistent spacing of the equal signs and make no attempt to prevent overprinting of the equation body and equation number."

  • Use \[ math stuff \] instead of $$ math stuff $$.

  • Use \quad, \qquad, \phantom and other standard ways of inserting whitespace.

  • Use \lvert and \rvert for absolute value.

  • Check out \DeclareMathOperator.

  • \begin{cases} for piecewise functions (like f(x) = 2 if x<7 or 3 otherwise).

  • \dfrac and \tfrac for overriding LaTeX's guess about the size of fractions.

From the AMS web page:

This guide is a concise summary of the essential features in LaTeX for writing math formulas , including features provided by the packages amssymb and amsmath . This is not a mere listing of everything available but a careful selection of the LaTeX commands that are especially recommended for authors' use. There is also some discussion of certain common uses and misuses of various commands that are better avoided for reasons of typographical quality or logical markup.

link|flag
vote up 7 vote down

Might seem too obvious, but it's vitally important to use a good editor that:

  • Makes things like inserting commonly used macros/comment markers/latex tags easy and consistent.
  • Can highlight the source properly
  • Can format the source properly

Either (g)Vim or emacs can do all of these, but I'm sure there will be plenty of others.

link|flag
1  
Eclipse has a plugin for latex syntax highlighting as well – Kena Dec 29 at 21:31
vote up 4 vote down

I like your list but I don't know if I agree with

Repeated code (i.e. piece of formula occurring many times) is evil

For someone comfortable enough with LaTeX, reading the LaTeX should be like reading the paper (obviously this is never completely true). If the repeated code is an eyesore for the LaTeX reader then it is probably also an eyesore for the reader of the pdf document.

Certainly there are exceptions where the LateX is cumbersome but the output is simple and in this case you should use a macro. But perhaps when you are tired of writing part of a formula over and over again you should consider that your reader may also be tired of reading it over and over again.

So I might replace this point with

Try to keep the structure of your code similar to the structure of your document

link|flag
show 1 more comment
vote up 4 vote down

I use the KOMA-script package for all my documents. It provides counterparts or replacements for the standard LaTeX classes such as article, book, etc., but offers many additional features and its own unique look and feel.

The KOMA-Script bundle provides drop-in replacements for the article/report/book classes with emphasis on typography and versatility. There is also a letter class, different from all other letter classes. It also offers e.g. a package for calculated type areas in the way laid down by the typographer Jan Tschichold, a package for easily changing and defining of page styles, a package for getting not only the current date but also the name of day and a package for getting current time. All these packages may be used not only with KOMA-Script classes but also with standard classes. (Source)

link|flag
vote up 4 vote down

This isn't exactly a best practice, but a possibility for LaTeX that not too many people know about. If you need to insert calculations in your LaTeX file, you can embed R code using Sweave. When you run Sweave, it produces a LaTeX file with the results of your calculations inserted in the file. Sweave embeds R inside LaTeX the way CGI, PHP, etc. embed script inside HTML.

With Sweave you can, for example, embed data and plotting commands in your LaTeX file. Then if you need to change the data, you don't need to manually create a new image and paste it in; Sweave recreates the image and embeds it for you. So your data and your plots stay in sync.

If you have any trouble getting started with Sweave, see troubleshooting Sweave.

link|flag
vote up 4 vote down
  1. If possible use Emacs to edit LaTeX files, using RefTeX (for handling citations) and AucTeX. Some people also like preview-latex, for having an almost WYSIWYG experience: your mileage may vary on that.
  2. Use the comment environment for commenting one paragraph or more, so that your version control sw does not complain
  3. Beware of end-of-line control characters if your collaborators use different OS
  4. Use a programmatic environment for producing graphics. Metapost is the oldest and stablest (it's also used by Knuth). Pstricks is probably the most resourceful, but it's a bit outdated. Tikz is the new kid on the block and already very good. I switched to tikz as it's able to deal with both postscript and pdf outputs.
  5. Read a "not so short guide to latex2e", after that move to Kopka & Daly.
  6. Have a look at the memoir package for designing a new document style: it's also a great guide to publishing.
  7. I use listings for display source code. It's ok, but not something definitive: you can probably do fine with a simple verbatim environment (maybe with fancyvrb).
link|flag
show 1 more comment
vote up 4 vote down

I recommend latexmk which, with -pvc switch (for "preview continuously"), will recompile (as many times as necessary) whenever the source changes. If you have a pdf viewer that autorefreshes the pdf view (Skim on Mac OSX does this) then you can see a refreshed preview every time you hit save.

Using latexmk is nice even without the -pvc option since it automatically compiles (including bibtex) as many times as necessary.

(For most documents, latexmk obviates the need for a Makefile.)

See this question for a mini-tutorial on latexmk: http://stackoverflow.com/questions/738755/dont-make-me-man

link|flag
show 2 more comments
vote up 3 vote down

Spelling the name correctly is a good practice: LaTeX

("Latex" is a sort of allergenic rubber.)

(I'm not just being snarky ... when I first saw the title of this post, I thought, 'what strange new scripting language is 'latex'? The traditional capitalization does carry meaning.)

link|flag
show 2 more comments
vote up 3 vote down

I am using LaTeX mostly for typesetting software manuals for our customers. I use macros for the name of the company and some other things that appear often in the document. Besides saving myself a few seconds here and there, it has the advantage that you can easily change the customers name if you use the same text for another customer - it makes for easier abstraction.

Apart from that, I recommend modularisation. The 'main' file contains the definitions that are only specific to this document and the chapter structure. Put each chapter in its own file, but also have a seperate file with all the page layout etc. I have several layout templates and can easily switch between them. This would also be valid for research papers - many publishers require their own layout.

link|flag
show 3 more comments
vote up 2 vote down

Be sure you are clear about what page format, letter or A4, you are generating.

link|flag
vote up 2 vote down

I disagree somewhat with the practise

"Use macros to represent concepts, not to type less"

because sometimes, the semantics of the macro you're using isn't very interesting to anyone who would probably read the source. I routinely define the following:

\def\x{\times}
\def\ox{\otimes}
\def\C{\mathbb C}
\def\Z{\mathbb Z}

and so on, to denote cartesian products, tensor products, the complex numbers, the integers, etc; all standard objects for my audience. The meaning of these are about as meaningful to the interested reader of my source-code as the corresponding output is to my intended audience, because I name them suggestively (if tersely). And while the macros produced by

\def\cH{\mathcal H}
\def\sS{\mathscr S}

may be less obvious, they aren't any less obvious than the corresponding roman-italics variables "H" or "S" would be in context.

Sometimes, all you want is to have more variables at your fingertips; semantically named variables such as \ComplexNbrs or \TensorProduct, while nice in a very pretty meta-document sense, mostly produce unnecessary typing for the author for effectively no gain.

Perhaps the key is in the choice of where you wish to save keystrokes --- to do it for appropriate and self-contained noun-objects, perhaps --- but I use macros to save typing to such an extent that I have written macros to define entire families of keystroke-saving macros.

link|flag
vote up 2 vote down

A nice Makefile for latex, finds the dependencies etc automatically (and quite nicely) : The Ultimate Latex Makefile

link|flag
vote up 2 vote down

Use the SIunits package when working with any kind of units instead of trying to compose the unit abbreviations by hand.

\usepackage[mediumspace,mediumqspace,Grey,squaren,binary]{SIunits}
...
\unit{10.5}\mega\bit\per\second
\unit{0.2}\micro\second
\unit{9.81}\meter\per\second\squared
link|flag
vote up 2 vote down

Here's one I don't think has been mentioned yet.

When you are including figures via a \includegraphics and the like, don't specify the full pathname (use graphicspath to organize them) and don't specify the file suffix. Keep all of your figures in one canonical form (or one raster, one vector) and use make or the like to generate temporary files as needed.

This is much easier to organize, and also works well with different build paths (e.g. pdflatex vs latex->dvi->ps)

For example, if I have a file figures/figure1.png and I want to include it, my preamble will include something like

\usepackage{graphicx}
\graphicspath{{./figures/}}

And the document will have something like

\begin{figure}[htbp]
  \centering
  \includegraphics[width=0.8\textwidth]{figure1}
  \caption{something terribly interesting}
\end{figure}

This works directly with pdflatex. If I need a .dvi, I'll have a makefile target that generates .eps files from .png files as needed, and either place them in './figures', or more likely in './eps' with an update to graphicspath above.

The benefits: Files can be organized into subdirs as needed, but you don't need to edit all over the place if you move them. You can also have different output targets without changing your source images and figures, and you won't have any surprised from conversion (like jpeg compression artifacts showing up in the pdf file you've generated from a .dvi)

link|flag
vote up 1 vote down
  • Lgrind is a good tool for rendering source code listings in LaTeX.
link|flag
vote up 1 vote down

First and foremost, I think the best practice is to have: A Guide to LATEX: Tools and Techniques for Computer Typesetting, by Helmut Kopka and Patrick W. Daly (Addison Wesley, 4th Edition, ISBN: 0321173856) nearby.

Once you find the preamble settings that work for whatever publication you are using, put them into their own preamble file. This will make finding the right settings a lot easier.

Moreover, if you find an environment setting you like, save it as well. For formatting code, I like:

\newenvironment{mylisting}
{\begin{list}{}{\setlength{\leftmargin}{1em}}\item\scriptsize\bfseries}
{\end{list}}

I happened to like WinEdt as an editor. Since at the time I wasn't as computer saavy as I am now, it made rendering my files a lot easier. Because of the text formatting and coloring it also made it easier to notice when something was not formatted correctly.

link|flag
vote up 1 vote down

Do this

\newcommand{\foo}{\ensuremath{stuff}}

rather than

\def\foo{stuff}

One advantage of the former is that you can then use \foo both in and out of math mode.

link|flag
vote up 1 vote down

Most of my tips have already been mentioned. The one tip I'd add is creating "namespaces" for different types of labels. For example, I use \label{eq:labelgoeshere} for equations, \label{tbl:labelgoeshere} for tables, \label{fig:labelgoeshere} for figures, etc.

For source code, I use the listings package.

link|flag
vote up 1 vote down

I use the listings package, not least because it allows for source files/examples to be kept separate from the document text, and imported directly.

\usepackage{listings}
\lstset{language=Python}
\lstinputlisting{source.py}
link|flag
vote up 0 vote down

You may want to consider running chktex over your document, it can find small nitpicks that can improve the typesetting and are normally quite hard to notice yourself. Things like using the right spacing, the right dash and many other things.

link|flag
vote up 0 vote down

Latexmk, VCS, booktabs, have already been cited... I'd add:

  • Forget that DVI ever existed. pdftex is the most current and maintained implementation, and it's always frustrating to get a recent article with the bitmapped fonts from the metafont era, which don't display well on screen, and are often generated at too low a definition for modern laser printers.

  • Type everything in UTF-8. That means \usepackage[utf8]{inputenc}, or give a try to XeTeX :)

  • Stay light on the custom macros. I try to group semantic macros & environments separately from those that are pure convenience. In the past I tended to define macros for e.g. product or persan names, classes, methods, code examples, and what not, but in the end I find it's better to just type what you mean use one single \code{} macro (a semantic alias of \texttt{}), and if necessary do a global search and replace to ensure consistency throughout the document.

  • Use collaboration notes. We have a set of adhoc macros for inserting TODOs and various comments while writing the article, but there are a few packages that do that and are already available in TeXlive (todonotes.sty is one).

link|flag
vote up 0 vote down

One suggestion: use \colon instead of : in appropriate math. E.g. compare $f:X \to Y$ with $f \colon X \to Y$.

link|flag
vote up 0 vote down

Put all graphics preferably only in SVG into a separate graphics directory (in the following fig/). Generate the according PDFs on-the-fly in your makefile using svg2pdf.sh:

#!/bin/bash

for f in $*; do
pdfname=${f%%.svg}.pdf;
inkscape $f --export-pdf=$pdfname;
pdfcrop $pdfname;
echo ${pdfname%%.pdf}-crop.pdf $pdfname;
mv ${pdfname%%.pdf}-crop.pdf $pdfname;
done

The makefile then just needs a special target for that:

PDFs=$(SVGs:%.svg=%.pdf)
%.pdf: %.svg
fig/svg2pdf.sh $*.svg
pdfs: $(PDFs)

Afterwards you can just throw the SVGs into the graphics directory and run make.

link|flag
1 2 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.