Angus Leeming wrote:
Herbert Voss wrote:
Unfortunately, the 'mu' of \micro\meter appears in a serif font.
Can I do anything about that?
never used SIunits,
It's good.
but \SetFigFont sets the fontfamily to \sfdefault.
I know. That's what I want.
\fontfamily{\rmdefault}
should work
??? I want *sans* serif fonts. For the "mu" of "\micro\meter" too.
uih, just thought the other way round ...
I have no problem to get it in sf with
\documentclass{article}
\parindent=0pt
\usepackage[textstyle,amssymb]{SIunits}
\makeatletter
\def\SetFigFont#1#2#3#4#5{%
[EMAIL PROTECTED]
\fontfamily{\sfdefault}\fontseries{\mddefault}\fontshape{\updefault}%
\selectfont}%
\makeatother
\begin{document}
\Huge\micro\meter % rm
\SetFigFont{10}{12.0}{\familydefault}{\mddefault}{\updefault}
\Huge Path length(\micro\metre) % sf
\end{document}
Herbert