Suboptimal LaTeX #5: miscellanea

Written on May 25, 2014

This post concludes the short series on LaTeX; we will see some other suggestion that did not fit in the other posts on generic mistakes and suggestions, spacing, math environments and mathematics.

The source with example from this post is in a writeLaTeX.

Use what LaTeX gives you (part 2)

Even though the LaTeX-savyness of a person reading a post like this must be higher than normal, I’m still pretty sure that there is at least someone that does not know that there is no need to design a title page by yourself: all decent classes handle the command \maketitle, which takes the information from \title, \author and \date. Oh, and for the last one, you can use \today. Most classes also have an \abstract macro.

Another surprising hole in the LaTeX knowledge of some author is defining new macros with \newcommand: they are probably old TeX users, and therefore use \def. The main advantage of \newcommand is that it gives an error when the new macro’s name already exists, instead of silently overwriting it. Even if you do not use the existing macro, some other package might be relying on it, and weird errors may arise. If instead you are sure that there are no bad interactions, you can force the overwrite using \renewcommand.

Labels and refs

(ref) and eqref

It might comes as a surprise, but I’ve also witnessed (fortunately, just two) authors not knowing about automatic references with \label and \ref. Fixing their articles has been… interesting. Much more common is not knowing about \eqref for citing equations: writing the parentheses by yourself achieve a similar looking result, but using a semantic command can be quite useful in the typesetting phase. Speaking of \ref and \eqref, it is essential to use a non-breaking space before them, to avoid having the number as the first character of a new line. To do so, just change the space with a tilde like in this example:

... as said in figure~\ref{fig:x}.

Another frequent problem is to use the same label twice: keep an eye for LaTeX Warning: Label `x' multiply defined errors in the LaTeX logs. To mitigate the possibility of defining multiple labels, it is common to prepend the type to all labels names, for example sec:cats and fig:cats for a section and a figure about cats, instead of just cats… for both.

Many authors also do not know that LaTeX is particularly tolerant with respect to a wrong position of the label command! For example, a snippet like the following most probably does not do what the author wanted.

\begin{figure}\label{cat_picture}
\includegraphics[width=\textwidth]{cat_picture.jpg}
\caption{This is a picture of a cat.}
\end{figure}

Did you spot the problem? The numbering of the picture is given by the caption, not by the figure environment. Hence the label will not refer to the number of the figure, because it wasn’t defined yet! Instead, it will refer to the number of a previous element (like a section). You would assume that LaTeX gives you at least a warning for this suspect arrangement, but you’d be wrong. It is a good habit to write the label at the last possible time, even when not strictly necessary, in order to avoid these errors.

Theorem environments

If you need to use theorems or similar environments, the short story is to use the amsthm package. It allows you to define in one simple line the environment you need in your paper, for example:

\newtheorem{thm}{Theorem}

for a Theorem environment that you can use with \begin{thm}. Remember that there are three predefined styles of such environments, one well suited for statements to be proved (theorem, lemmas, etc.), one for definitions, examples, etc., and the last for additional notes and remarks. For example, this is a good preamble:

\theoremstyle{plain}
\newtheorem{thm}{Theorem}
\newtheorem{lem}{Lemma}

\theoremstyle{definition}
\newtheorem{defn}{Definition}
\newtheorem{exmp}{Example}

\theoremstyle{remark}
\newtheorem{rem}{Remark}
\newtheorem{note}{Note}
Theorems with amsthm

It also provides many other configurations, like whether to show the numbering and when to reset it.

Finally, it has an embedded proof environment, and a command \qedhere to help LaTeX drawing the q.e.d. symbol at the correct place: indeed, if you finish your proof with a displayed equation, LaTeX by default places the symbol on the next line.


Part of this series

  1. Suboptimal LaTeX #1: intro
  2. Suboptimal LaTeX #2: spacing
  3. Suboptimal LaTeX #3: mathematical environments
  4. Suboptimal LaTeX #4: mathematics
  5. Suboptimal LaTeX #5: miscellanea

See also

  1. How to take lecture notes with LaTeX
  2. LaTeX class for lecture notes
If you liked this post, please share it with your friends: