Writing micrometer in LaTeX

Simply using math mode in latex to generate the SI micro- prefix isn’t correct since this will produce an italic symbol.

One way to properly write micrometer is by using the SIunits package, this may well be included as a package with the latex on your computer. An example latex document to achieve this is demonstrated here:


\documentclass{article}
\usepackage[mediumspace,mediumqspace,Grey,squaren]{SIunits}

\begin{document}
\unit{100}{\micro\meter}
\end{document}

There are many options specified for the package SIunits in the example above, the first two can be used to control the use of white space, Grey and squaren can be specified to avoid conflicts with other packages you may be using.

Leave a Reply