Hoy me encontré con un fenómeno que todavía no entiendo, incluso después de varias horas de investigación.
Una determinada combinación de paquetes y configuraciones hace que elT y F mayúsculas para ser más pequeñasluego el resto del alfabeto y me gustaría entender por qué y cómo evitarlo.
El problema aparece con el siguiente MWE:
\documentclass[a4paper,
12pt,
parskip=true,
listof=totoc,
footlines=2,
headsepline,
footsepline,
DIV=calc]
{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[colorlinks,
pdfpagelabels,
pdfstartview = FitH,
bookmarksopen = true,
bookmarksnumbered = true,
linkcolor = black,
urlcolor = black,
plainpages = false,
hypertexnames = false,
citecolor = black] {hyperref}
\begin{document}
\section{Nominal TEU}
I do not like that the T in TEU is smaller than the E and U. Also the T in TPC appears to be smaller than the P and C. Why is the T in TEU and the T in TPC smaller than the other capital letters? Also, F in FEU appears to be smaller.
ABCDEFGHIJKLMNOPQRSTUVWXYZ
\end{document}
Ya descubrí que cualquiera de las siguientes opciones "resolverá" el problema:
- Eliminando las opciones para documentclass y solo indicando
\documentclass{scrartcl}
- Cargando paquete
fontenc
sin opciones como\usepackage{fontenc}
- Cargando paquete
hyperref
sin opciónpdfstartview = FitH
¿Alguien sabe por qué sucede esto y cuál podría ser la causa?