\chapterで助けが必要です

\chapterで助けが必要です

私はタイトルの章を次のようにしたい第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}

ここに画像の説明を入力してください

「Chapter X」とタイトルを同じサイズにしたい場合は、次のように記述します。

\huge\bfseries \@chapapp\space \thechapter.\space #1

関連情報