我在 classicthesis.sty 中找到了这些字体建议。它们对于 kpfonts 来说是什么?是否Palatino 10pt: 288--312pt | 609--657pt
意味着\textwidth
必须在 288 and 312pt
和\textheight
之间609 and 657pt
?
% Here are some suggestions for the text widths and heights:
% Palatino 10pt: 288--312pt | 609--657pt
% Palatino 11pt: 312--336pt | 657--705pt
% Palatino 12pt: 360--384pt | 768pt
% Minion 10pt: 264--288pt | 561--609pt
% Minion 11pt: 288--312pt | 609--657pt
% Minion 12pt: 336pt | 672pt
% Libertine 10pt:
% Libertine 11pt:
% Libertine 12pt:
% kpfonts 10pt:
% kpfonts 11pt:
% kpfonts 12pt:
答案1
从以下测试可以看出,KP 字体的大小与
Palatino:
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}%
\usepackage[T1]{fontenc}%
\usepackage{mathpazo}
\usepackage[fulloldstylenums,largesmallcaps]{kpfonts}%
\newlength\mylen
\newcommand{\testlen}{abcdefghijklmnopqrstuvwxyz}
\begin{document}
\settowidth{\mylen}{\testlen}
KP Fonts: \the\mylen
\typeout{KP Fonts: \the\mylen}
\begingroup
\fontfamily{ppl}\selectfont
\settowidth{\mylen}{\testlen}
Palatino: \the\mylen
\typeout{Palatino: \the\mylen}
\endgroup
\end{document}
结果:
KP Fonts: 159.05984pt
Palatino: 159.85011pt
因此,我会对 KP 字体和 Palatino 使用相同的设置。