When I compile the code below with and without the \usepackage[T1]{fontenc}, I get quite different results. The normalfonts are the same, but with T1 the characters in the section heading seem way too wide (a smaller font is scaled up?) while those in the LARGE line are actually a bit narrower. Why is this happening, and how do I get T1 to behave? Presumably the default OT1 fonts are the "correct" CMSS fonts?
\documentclass[12pt,flegn,a4paper]{article}
\usepackage{lipsum}
\renewcommand*\familydefault{\sfdefault}
%\usepackage[T1]{fontenc}
\begin{document}
\section{This is a long section title}
a b c d e f g h i j k l m n o p q r s t u v w x y z
\par
{\LARGE Some very LARGE text Blah Blah}
\par
\lipsum[1]
\end{document}
\usepackage[T1]{fontenc} \usepackage{lmodern}to get better results. – Gonzalo Medina May 12 '13 at 00:59