
전체 페이지 수를 줄이기 위해 적절한 글꼴을 설정하는 데 도움이 필요합니다.
맥락: 저는 8년 동안 논문을 계속해서 작성해 왔습니다. 불행하게도 나는 지난 몇 년간 사용해 온 모든 패키지와 설정을 더 이상 완전히 알지 못합니다. 아래 MWE와 관련이 없는 것으로 보이는 모든 패키지를 제거했습니다. 일부 패키지가 완전히 이해되지 않거나 최신 상태가 아닌 경우 양해해 주시기 바랍니다. 지금은 다음과 같은 이유로 최소한의 노력만 투자하고 싶습니다.
논문이 박사 사무실에서 심사를 받았으나 너무 길어서 반송되었습니다. 몇 주 안에 페이지 수를 대폭 줄여달라는 요청을 받았습니다. 시간이 얼마 남지 않았습니다.
이미 수행된 콘텐츠 축소 외에도 주로 글꼴 크기(12pt에서 11pt로), 페이지 여백(여전히 허용 가능한 div=12) 및 마지막 글꼴 유형을 통해 줄이려고 노력하고 있습니다. 다음을 사용하여 글꼴을 serif에서 sans serif로 변경합니다.
\renewcommand{\familydefault}{\sfdefault}
페이지 수를 조금 줄일 수 있었습니다. 그렇게 하면서 (.pdf를 Word 파일로 변환한 후) 본문 텍스트와 (장 또는 섹션) 제목과 헤더의 글꼴이 다른 것을 발견했습니다.
제목 : Arial
본문 텍스트: Lucida Sans Unicode
헤더: 칼리브리
첫 번째 제출의 경우 다음 명령을 사용하여 헤더를 굵게 변경했습니다.
\setkomafont{pageheadfoot}{\normalfont\bfseries}
글꼴은 다음과 같습니다. 제목: Arial
본문 텍스트: Palatino Linotype
헤더: Palatino Linotype(굵게)
제 질문은 다음과 같습니다. 도움을 주시면 정말 감사하겠습니다!
글꼴이 다른 것이 일반적입니까? KOMA-Script는 최소한 글꼴 혼합에 대해 경고합니다. 특이한 작업을 수행하고 싶지는 않지만 글꼴이 다르다는 것이 이상하다고 생각합니다.
헤더를 동일한 글꼴과 굵게 변경하는 것이 좋습니까(위 명령 참조)?
모든 요소를 동일한 글꼴로 어떻게 변경할 수 있습니까? 다음 명령은 원하는 변경으로 이어지지 않습니다.
\addtokomafont{part}{\normalfont\bfseries}
\addtokomafont{partnumber}{\normalfont\bfseries}
- 글꼴에는 어떤 다른 옵션/설정이 있습니까? 또는 페이지 수를 더 줄이기 위해 어떤 글꼴을 권장하시겠습니까?
MWE:
\documentclass[
11pt,
headheight=27.2pt,
listof=totoc,
bibliography=totoc,
listof=chapterentry,
DIV=12,
headsepline,
plainheadsepline,
twoside=semi
] {scrreprt}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\renewcommand{\familydefault}{\sfdefault} %% newly added to make the font sans serif (8 pages shorter)
\setlength{\parindent}{0pt} %% to avoid indentation of paragraphs
\setkomafont{captionlabel}{\normalsize\bfseries} %% The number and the word in Figure 1. XXX in bold
\setkomafont{caption}{\normalsize\bfseries} %% For table captions, the font in bold
\usepackage[automark,autooneside=false]{scrlayer-scrpage}
\clearpairofpagestyles
%\setkomafont{pageheadfoot}{\normalfont\bfseries} %%% Add this here?
%\addtokomafont{part}{\normalfont\bfseries} %%% Add this here?
%\addtokomafont{partnumber}{\normalfont\bfseries} %%% Add this here?
\ihead{\ifstr{\headmark}{}{\leftmark}{\headmark}}
\ofoot*{\pagemark}
\usepackage{textcomp}
\usepackage{microtype} % line adjustment
\usepackage{caption} % for tables without caption and not in the directory with \caption*{}
\usepackage{blindtext}
\begin{document}
\Blinddocument
\end{document}