Angus Leeming wrote:
Herbert Voss wrote:
Angus Leeming wrote:
Any clues on how to write
$9\times9\times16$ block
and get it to appear in a sans serif font?
$\mathsf{9\times9\times16\ block}$
Yes, I know that one. What I was looking for was
some magic command
several math formulae in a sans serif font
...
...
return to normal math style
so that I can wrap each XFig figure with a couple of bits of LaTeX
magic. Any hope?
\documentclass{article}
\usepackage{sansmath}
\parindent=0pt
\begin{document}
\bgroup
\sansmath
\Huge$9\times9\times16\ block$
\egroup
\Huge$9\times9\times16\ block$
\end{document}
grouping is necessary, there is no way back
Herbert