[Tex/LaTex] Name of default “sffamily” font

fontssans-serif

I'm using LaTeX (texlive) in Debian Wheezy. How can I determine which font is specified by \sffamily?

Best Answer

You could issue \meaning\sfdefault in the document body -- without any font packages loaded, this will yield cmss, i.e., Computer Modern Sans Serif.

\documentclass{article}

\usepackage[T1]{fontenc}

\begin{document}

\meaning\sfdefault

\end{document}