LaTeX Tutorial


What is LaTeX?

LaTeX is a document preparation system that produces high-quality typeset documents. It is a set of macro's over Donald Knuth's TeX typesetting language which effectively allows one to focus on actually writing documents and leave design elements to the compiler (although these can be extensively customized). LaTeX is the preferred typesetting system for most academic fields and most people know it as a good way to typeset mathematical formulas. However, it can also can be used for posters, presentations, and many other useful applications. According to the official guide, it can be pronounced either Lah-tech or Lay-tech.

What LaTeX is not.

LaTeX is not a word processor, and subsequently, not what you see is what you get (WYSWYG). This switches the focus from design to content. LaTeX does not allow one to interactively edit the final appearance of a document.

The advantages of LaTeX

LaTeX compiles the entire document at once which allows it to adjust many small things such as word spacing, letter spacing, etc in response to the entirety of the document. This produces much higher quality output and while they does not necessarily "pop" from the page, these small details are why people say things such as "I don't know why, but LaTeX just looks better."


LaTeX

Microsoft Word

You may recognize these as the statement of the fundamental theorem of calculus. The code to create such an equation is given below, note that most of the commands are setting up the document itself the actual code the for the equation is quite simple. Anyone familiar with word processors would know this would be a much more difficult task to typeset in such a program and as shown above, would produce the same quality output.

\documentclass{article}
\begin{document}
\begin{equation}
    \int_\alpha^\beta f'(x) \, dx=f(\beta)-f(\alpha)
\end{equation}
\end{document}

This tutorial will teach the basics of LaTeX through examples of both input and output. There is also a resources section with links and tables that will be useful after completion of the tutorial. Remember that LaTeX is about the final product and the final rendering is ALL that matters. However, there are ways to do things that are better than others. This will improve compilation efficiency and generally make your life easier.

One of the main facets of this tutorial will be to reproduce examples. It is imperative that you actually type everything yourself into the editor of your choice. First off, we will learn how to install and use LaTeX on the operating system of your choice.





Start! Table of Contents

Created by Zachary Glassman. Contact at zach.glassman@gmail.com