나는 제목 장을 다음과 같이하고 싶다1장. 당신의 도움이 필요해요. 다음과 같지 않음:
제1장
당신의 도움이 필요해요
\documentclass{book}
\usepackage{titlesec}
\titlespacing{\chapter}{0pt}{-50pt}{0pt}[0pt]
\titleformat{\chapter}[display] {\bfseries\Large} {\filcenter\MakeUppercase{\chaptertitlename} \Huge\thechapter} {0ex} { \filcenter\Huge }
\begin{document}
\chapter{I need your help}
\end{document}.
답변1
이것을 시도해 볼 수 있습니다. 0.42em
교수형이 마음에 들 때까지 가지고 놀아보세요 .
\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{titlesec}
\titleformat{\chapter}[hang]{\Huge\bfseries}{\chaptertitlename\ \thechapter.}{0.42em}{}
%\titleformat{\chapter}[display]{\normalfont\huge\bfseries}{\chaptertitlename\ \thechapter}{20pt}{\Huge} % imitates the original from `book`
\begin{document}
\chapter{I need your help}
\end{document}
답변2
\@makechapterhead
외부 패키지 를 사용하지 않고도 book.cls
. (다음 접근 방식은 book
문서 클래스에 대해 작동하며 다른 클래스에서는 작동이 보장되지 않습니다.)
\documentclass{book}
\usepackage{lipsum}% dummy text
\makeatletter
\def\@makechapterhead#1{%
\vspace*{50\p@}%
{\parindent \z@ \raggedright \normalfont
\ifnum \c@secnumdepth >\m@ne
\if@mainmatter
\huge\bfseries \@chapapp\space \thechapter.\space \Huge #1
\par\nobreak
\vskip 40\p@
\fi
\fi
}}
\makeatother
\begin{document}
\chapter{I need your help}
\lipsum[1]
\end{document}
"X장"과 제목의 크기를 동일하게 하려면 다음과 같이 작성하면 됩니다.
\huge\bfseries \@chapapp\space \thechapter.\space #1