[Tex/LaTex] Non italic math mode symbols

math-modeunits

I would like to insert a \mu command to form $\mu$ m (micro meters)
i.e. as a unit, not a variable.

This means I do not want \mu to be italic. However, LaTeX only accepts the
\mu command in math-mode and therefore it appears in italic….

\mathrm{\mu} does not work.

Any ideas on how can to change this into a regular upright symbol?

Best Answer

It is better to use siunitx for units.

\documentclass{article}
\usepackage{libertine} 
\usepackage{siunitx}

\begin{document}
\begin{equation}
\SI{100}{\micro\meter}
\end{equation}

\end{document}

enter image description here

Related Question