今日、私は何時間も調査した後でもまだ理解できない現象に遭遇しました。
特定のパッケージと設定の組み合わせにより、大文字の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}
次のいずれかを実行すると問題が「解決」されることはすでにわかっています。
- ドキュメントクラスのオプションを削除し、
\documentclass{scrartcl}
fontenc
オプションなしでパッケージをロードする\usepackage{fontenc}
hyperref
オプションなしでパッケージをロードするpdfstartview = FitH
なぜこのようなことが起こるのか、また根本的な原因は何なのか知っている人はいますか?