LaTeX: Document Creation Alternative

I’ve been using LaTeX a lot recently and I thought I would write a quick post since I wish I would have found out about it earlier. LaTeX is a really powerful document (pdf and others) creation program. It’s sort of like HTML and CSS for paper publishing. As a first warning, LaTeX, like HTML, is not WYSIWYG. You have to code in things like \textbf{This will be bold}. This takes some getting used to after programs like MS Word but after using LaTeX, I really can’t stand working in Word for anything longer than a page or two.

So why would you want to give up the convenience of Word for the (initially) more difficult LaTeX. Well one immediate benefit is it looks better. LaTeX does ligatures and kerning. To tell the truth, I never even knew what these were until I switched but they do seem to make documents look better.

The main benefit to me was the easy handling of figures and references. I would often insert a figure into Word only to have to update it with new data or adjusted labels. Somehow reinserting the figure always seemed to mess up its size or spacing or the surrounding text. In LaTex, you can just type \includegraphics{graph.eps} and LaTeX will include the current version of graph.eps each time it is compiled and automatically place it in an aesthetic place. LaTeX also comes with its own bibliography and reference manager, BibTex. This makes references as simple as typing \citep{SmithJohnsonetal1999}. You just need to make a main bibliography file with the details on SmithJohnsonetal1999 and all your other references and BibTex will select the ones referenced in your document and make a bibliography in just about any style.

If you are on Windows, MikTex seems like best solution for implementing TeX. It’s free too. WinEdt (shareware) is a handy editor for LaTeX. It integrates very well with LaTeX and makes the first steps in the switch from Word much easier. Java-based JabRef (free) is handy for managing bibliography data.

Links: