I'm attempting to move from the nicefrac package to xfrac. The following source compiles, but with a warning:
\RequirePackage{fix-cm}
\documentclass{article}
\usepackage{xfrac}
\usepackage{mathrsfs}
\begin{document}
$\sfrac{1}{2}$
\end{document}
LaTeX Font Warning: Font shape 'U/rsfs/m/n' in size <3.49998> not available
It appears as though xfrac attempts to load all current math alphabets in its typeset size, even if they are not used in the fraction. Is there a variant of rsfs that supports fractional sizes? Or a way to prevent xfrac from loading it unless it is needed?
Basically, I'd like to suppress this warning unless LaTeX is actually typesetting a glyph from rsfs at a fractional size. Is this possible?
fix-cm's source. I was, however, missing the\skewchar\font127. Is there any reason not to define this in terms of continuous font sizes? Or is this just something that wasn't possible long ago and has simply propagated through today? – mbauman Feb 09 '11 at 19:03