我不知道如何修改它以使其看起来像下面的图像。
\documentclass{book}
\usepackage{titlesec}
\titleformat{\chapter}
{\normalfont\huge\bfseries}{\thechapter\newline\chaptertitlename\}{150pt}{\huge}
\begin{document}
\chapter{The Chapter Name}
\end{document}
答案1
这是一种可能性。章节标题排版为右对齐,宽度与大“章节”的宽度相同。
\documentclass{book}
\usepackage{tgtermes}
\usepackage{titlesec}
\newlength{\mytitlewidth}
\AtBeginDocument{
\settowidth{\mytitlewidth}{\normalfont\fontsize{60}{0}\selectfont\chaptername}
}
\newcommand{\setchaptertitle}[1]{\parbox[t]{\mytitlewidth}{\raggedright#1}}
\newcommand{\setchapternumber}{%
\smash{\raisebox{-.25\height}{\fontsize{100}{0}\selectfont\thechapter}}}
\titleformat{\chapter}[display]
{\normalfont\fontsize{60}{0}\selectfont}
{\chaptername\ \setchapternumber}
{15pt}
{\huge\setchaptertitle}
\begin{document}
\setcounter{chapter}{12}
\chapter{The chapter title that can go on several lines}
\end{document}
调整以适应。我不会使用粗体。