classicthesis.sty의 글꼴 제안

classicthesis.sty의 글꼴 제안

나는 classicthesis.sty에서 글꼴에 대한 제안을 찾았습니다. kpfonts는 무엇인가요? 사이에 있어야 한다는 뜻 Palatino 10pt: 288--312pt | 609--657pt인가요 ? 사이에 있어야 한다는 뜻인가요 ?\textwidth288 and 312pt\textheight609 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와 동일한 설정을 사용하겠습니다.

관련 정보