패키지를 사용하여 내 문서의 글꼴 크기를 조정하려고 합니다 scalefnt
. 그러나 다음 예에서 볼 수 있듯이 본문 텍스트에만 영향을 미치고 섹션이나 하위 섹션 제목에는 영향을 미치지 않습니다.
\documentclass[a4paper,12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{fontenc}
\usepackage{scalefnt}
\begin{document}
\begingroup
\scalefont{2}
\subsection*{Test}
Test
\endgroup
\subsection*{Test}
Test
\end{document}
산출:
이 작업을 수행할 수 있는 방법이나 섹션 및 하위 섹션 제목을 포함한 모든 글꼴의 크기를 동일한 요소로 조정하는 다른 방법이 있습니까?
답변1
글꼴 및 표준 단면 명령 만 사용하는 경우 \normalsize
다음을 사용할 수 있습니다.sectsty
패키지섹션 제목의 글꼴 크기를 쉽게 조작할 수 있습니다.scalefnt
.
다음 예는 일부 수정된 내용입니다.모든 제목의 텍스트 색상을 변경할 수 있나요?:
\documentclass{article}
\usepackage{lmodern,scalefnt,sectsty}% http://ctan.org/pkg/{lmodern,scalefnt,sectsty}
\usepackage{xcolor}% http://ctan.org/pkg/xcolor
\sectionfont{\color{red}\scalefont{2}}
\subsectionfont{\color{green!80!black}\scalefont{2}}
\subsubsectionfont{\color{blue!50!white}\scalefont{2}}
\AtBeginDocument{\scalefont{2}}
\begin{document}
\section{A section} Hi there
\subsection{A subsection} Some text
\subsubsection{A subsubsection} Some more text
\small Hi there
\end{document}
볼 수 있듯이 문서 클래스 옵션( 이 경우 기본값)을 \small
기반으로 다른(고정) 글꼴 크기를 시작하므로 set 에 해당하지 않습니다 . 유일한 주의사항.10pt
\scalefont{2}
\AtBeginDocument
답변2
당신은 말하지 않습니다왜당신은 그것을하고 싶어합니다. 여기서 문서 크기 옵션은 12pt
섹션 제목과 같은 구조적 요소의 글꼴은 물론 페이지 크기 및 세로 간격도 설정하므로 모두 함께 변경해야 합니다.
[a5paper]
아마도 더 작은 크기로 조판 한 다음 pdf2pdf 사후 프로세스를 사용하여 문서를 A4로 다시 확장한 다음 글꼴과 세로 간격 크기를 함께 조정하고 싶을 수도 있습니다 .