LaTeX is a macro language on top of TeX; there are thousands of packages available that define all sorts of macros (commands) one can use in our documents. But sometimes they just don’t cover what we want or need. Often the solution is defining a new command. For very simple commands, this is straightforward, but if we want (or need) flexibility, things become more involved. We will take a look at good (and bad) approaches to define new macros in LaTeX.

Simple Commands

\def is a typical TeX macro to define other macros. Since it is a pure TeX primitive, issues arise quickly. No one should ever use this directly. Instead, we should to use \newcommand, a built-in LaTeX macro.

All usages of \newcommand should follow the following syntax:

\newcommand{name}[num][default]{definition}

Let’s illustrate the usage with several examples. First, we define a command \foo that prints outputs bar:

\newcommand{\foo}{bar}

Easy right? Now, let’s automatically add a registered trademark ® in superscript. In order for this to work, we need one argument: the trademark itself. The line of LaTeX needed to define this, is:

\newcommand{\regtm}[1]{#1\textsuperscript{\textregistered}}

What we did is pass the name as \regtm, signal that we need one required argument and then used that argument (the #1) in the definition. We can use up to nine arguments in LaTeX and use them by typing #1 through #9. For those that need more than nine arguments: this is not possible without a TeX hack. If you really need it, read “How to break the 9-argument limit”.

We can now typeset “MATLAB®” as follows:

\regtm{MATLAB}

Only one option in the syntax definition of \newcommand remains unused: the default field. Using the default field, we can set a default value for the first argument. Suppose we want to define the following test command:

\newcommand{\test}[1][1]{test #1}

Then we will get test 1 if we use \test and test 3 if we used \test[3]. Notice the usage of square brackets and not curly brackets, since we are specifying an optional argument.

The above example also illustrates very well how LaTeX processes spacing. Suppose we have \test somewhere in the middle of a sentence:

This command prints a test message: \test for example.

Then this will be typeset as: “This command prints a test message: test 1for example.” Notice the missing space between “1” and “for”. To get a space, we need to type:

This command prints a test message: \test\ for example.

But why is this? LaTeX always ignores spacing after macros without argument because there is no other way to distinguish between the text and macro (and double spaces are always converted into a single space). To fix this, we need to tell LaTeX we want a space after the macro. This is done using \ . This will always work, even if there is a line break immediately after the macro. This alo explains why the following example does have correct spacing:

This command prints a test message: \test[5] for example.

We do have an argument here, so there’s no need to add a backslash. When we type \test{}, a space will also be inserted. However, this is rather ugly since {} will create an empty TeX atom. There won’t be a space between the command and the atom, but there will be one between the atom and the subsequent text if you typed a space. This however is not what we intend to write: a space between the macro and the text that follows.

A final example that illustrates the usage of both a required and optional argument:

% requires the amsmath package
\newcommand{\intx}[2][x]{\int#2\,\text{d}#1}

This commands defines an alternative integration macro that includes the differential. Since most functions have x as variable, it’s reasonable to set the default integration variable to x. Some example usages and results (don’t forget that we need to be in math mode and load the amsmath package for these commands to work):

\intx{\frac{\sin x}{x}}
\int\frac{\sin x}{x}\,\text{d}x
\intx[u]{\frac{\sin u}{u}}
\int\frac{\sin u}{u}\,\text{d}u

\newcommand will always check if the macro has not been defined yet. If the command has already been defined, \newcommand will prompt an error message. There is only the possibility to add one optional argument. If we need more optional arguments, a more complicated setup is needed.

How to redefine a command? Simple, use \renewcommand. The syntax is exactly the same. However, how to use the original command when defining my own version? We can’t just type \renewcommand{\section}[1]{\section{Awesome #1}}… What we need is the TeX \let primitive. Thus, first assign a new command with the \let primitive and then use that command in \renewcommand. For example:

\let\oldsection\section
\renewcommand{\section}[1]{\oldsection{Awesome #1}}

For more information on the difference between \def and \let, read read this stackexchange answer.

There is one final possibility: we need to define a command, but if it has been defined already, we don’t need to take action. \providecommand exhibits this functionality. Again, it has the same syntax as \newcommand, but it will not output an error if the command is already defined. In fact, it won’t do anything in this case.

If we experience problems when including commands within a figure caption for example, it might be worth trying to replace \newcommand with \DeclareRobustCommand. This will be useful for macros that are expanded and included into auxiliary files. Why not use \DeclareRobustCommand all the time? It’s less efficient and does not check if the macro has been defined already (source.

Liberate Macro Definitions (with LaTeX3)

The LaTeX3 project is still under way, but we can already use several of its packages. xparse is one of these. The objective of this package is to replace \newcommand (and similar macros) in favour of more extendable macros. It provides much more flexibility and will (probably) in the future become more important and widely used.

I will only highlight \NewDocumentCommand in one example here, there are many other possibilities. We will discuss how to define the \intx macro with \NewDocumentCommand.

The original definition:

\newcommand{\intx}[2][x]{\int#2\,\text{d}#1}

The new definition:

\NewDocumentCommand{\intx}{O{x} m}{\int#2\,\text{d}#1}

The usage is exactly the same as before. However, we can now flip the mandatory and optional arguments, this makes the usage more readable, since the differential always comes last:

\NewDocumentCommand{\intx}{m O{x}}{\int#2\,\text{d}#1}

And now we can issue: \int{u}[u].

More Complicated Designs and Closing Remarks

Math Mode

The \intx macro we defined above always needs to be used in math mode. As a consequence, we need to type: $\intx{x}$ and not \intx{x}. For this specific command, this is not a real issue. But suppose we want to define a subset of the integer numbers: Z_{2n}. Then it is more convenient to write \Z[2n] in the text than $\Z[2n]$. But adding the dollar signs inside the definion will break support if it is include inside a math environment. The solution is \ensuremath. If we define the macro as follows, we can support \Z[2n] both in text and math mode:

\newcommand{\Z}[1][n]{\ensuremath{Z_{#1}}}

Key-Value Arguments

There are even more possibilities: how about a key-value system. With this kind of setup we can issue: \box[hight=5em,width=6em]{Contents}. To achieve this kind of flexible syntax, one can use the keyval packate or a pgfkeys setup, as discussed here. This is beyond the scope of this blog post, since these facilities are usually only used by package developers.