
로 조판된 문서의 머리말에서 장 제목 글꼴 크기를 어떻게 지정합니까 memoir
? 서문, 본문, 뒷문의 글꼴 크기를 다르게 설정하고 싶습니다. 이 사진처럼 글꼴 크기를 줄여야 합니다.
답변1
클래스 memoir
에는 완전히 새로운 스타일을 정의하지 않고도 이를 수행할 수 있는 몇 가지 후크가 있습니다.
이 예제에는 작동 방식을 보여주기 위해 터무니없는 형식이 포함되어 있습니다. 글꼴 설정을 원하는 대로 변경하세요.
\documentclass{memoir}
\begin{document}
\frontmatter
\renewcommand{\chaptitlefont}{\normalfont\bfseries}
\chapter{Front}
\mainmatter
\renewcommand{\chapnumfont}{\normalfont\bfseries\huge}
\renewcommand{\chapnamefont}{\normalfont\Large}
\renewcommand{\chaptitlefont}{\normalfont\itshape\Huge}
\chapter{Main}
\backmatter
\renewcommand{\chaptitlefont}{\normalfont}
\chapter{Back}
\end{document}