회고록을 사용하여 글꼴 크기, 리드 크기, 파이카 측정값 결정

회고록을 사용하여 글꼴 크기, 리드 크기, 파이카 측정값 결정

memoir다음 페이지 레이아웃(MWE)으로 문서를 설정했습니다 .

\documentclass[%
    a4paper,
    10pt,
    twoside,
]{memoir}

%%% Layout the Page %%%
\setstocksize{297mm}{210mm}
\settrimmedsize{\stockheight}{\stockwidth}{*}
\setulmarginsandblock{27.4mm}{*}{1}
\setlrmarginsandblock{24mm}{79mm}{*}
\setmarginnotes{9mm}{50mm}{1em}
\setheadfoot{1.25\baselineskip}{10mm}
\setheaderspaces{*}{8mm}{*}
\checkandfixthelayout[fixed]

\begin{document}
MWE
\end{document}

로그는 다음과 같은 높이와 너비를 제공합니다.

******************************************************
Stock height and width: 845.04684pt by 597.50787pt
Top and edge trims: 0pt and 0pt
Page height and width: 845.04684pt by 597.50787pt
Text height and width: 689.1258pt by 304pt
Spine and edge margins: 68.2866pt and 224.77676pt
Upper and lower margins: 77.96053pt and 77.96053pt
Headheight and headsep: 15pt and 22.76219pt
Footskip: 28.45274pt
Columnsep and columnseprule: 10pt and 0pt
Marginparsep and marginparwidth: 25.60747pt and 142.26378pt
Sidecapsep and sidecapwidth: 7pt and 117pt
Sidebarhsep and sidebarwidth: 7pt and 117pt
Sidebarvsep and sidebartopsep: 12pt and 0pt
Sidebarheight: 596.39996pt
Sidefoothsep and sidefootwidth: 7pt and 117pt
Sidefootvsep and sidefootheight: 12pt and 596.39996pt
******************************************************

memoir예를 들어 핸드북 '용어' 장 에 나와 있는 대로 글꼴, 리드 크기 및 측정값을 결정하고 싶습니다 . 그럼 이것은 10pt 글꼴과 12pt 리드 크기에 대해 10/12가 될 것 같아요. 실제로 리드 크기를 어떻게 결정합니까?

결국 측정값, 즉 텍스트 줄의 길이를 어떻게 결정합니까? 304pt(길이에 지정된 텍스트 너비)가 12(포인트/파이카)를 초과하므로 304/12 = 25.333pc입니까?

관련 정보