[Tex/LaTex] Recommended font for math symbols

fontsunits

I need to show unit symbols of micro, nano, kilo, mega ..
Is there a recommend front for this usage?

ex: 10µ Ω

Best Answer

Use the siunitx package, it's pretty much the best way to typeset (SI)units, since you don't have to take care of spacing, symbols and whatnot.

Example:

\documentclass{article}
\usepackage{siunitx}
\begin{document
This is an example of the siunitx package: \SI{10}{\micro\ohm}
\end{document

Gives the following:

enter image description here