為什麼包的組合會導致大寫 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{scrartcl}
  2. 載入fontenc沒有選項的包\usepackage{fontenc}
  3. hyperref不帶選項加載包pdfstartview = FitH

有誰知道為什麼會發生這種情況以及根本原因是什麼?

相關內容