为什么包的组合会导致大写字母 T 和 F 比字母表的其余部分更小?

为什么包的组合会导致大写字母 T 和 F 比字母表的其余部分更小?

今天我遇到了一个现象,尽管经过了几个小时的研究,我仍然不明白。

某些软件包和设置的组合会导致大写 T 和 F 较小然后是字母表的其余部分,我想了解为什么以及如何避免这种情况。

在此处输入图片描述

该问题出现在以下 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}

我已经发现以下任何一种方法都可以“解决”该问题:

  1. 删除 documentclass 的选项并仅声明\documentclass{scrartcl}
  2. 加载fontenc不带选项的包\usepackage{fontenc}
  3. hyperref不带选项的加载包pdfstartview = FitH

有人知道为什么会发生这种情况以及其根本原因是什么吗?

相关内容