[Tex/LaTex] μF not working in Latex

symbols

Have been using below code,

\documentclass{article}
\usepackage{siunitx}
\begin{document}
  \si{\um}
\end{document}

to represent μm but similarly, \si{\uF} not working for μF. So, how can I get the symbol for μF ?

Best Answer

To get μF, use \si{\micro\farad}.

\um for μm only works because it is defined as a shortcut by siunitx. For a full list of all available shortcut see table 21 in the siunitx manual.

Related Question