vote up 37 vote down star
50

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
show 1 more comment

33 Answers

prev 1 2
vote up 8 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 '08 at 21:31
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 1 vote down
  • Lgrind is a good tool for rendering source code listings in LaTeX.
link|flag
prev 1 2

Your Answer

Get an OpenID
or

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