如何在 1 个完整的单页中显示章节标题

如何在 1 个完整的单页中显示章节标题

如何在此表单中显示内容,如图1所示。

根据所需格式从 word 生成图像

我得到的内容如图2所示。 我在 Latex 中获取的文本格式

答案1

一个简单的解决方案titlesec

\documentclass{book}
\usepackage[showframe]{geometry}
\usepackage{lipsum}

\usepackage [newlinetospace]{titlesec}

\titleformat{\chapter}[display]{\vfill\filcenter\bfseries}{\huge\chaptername~\thechapter}{10ex}{\Huge}%
[\vfill\null\thispagestyle{empty}\clearpage]
\titlespacing{\chapter}{0pt}{0ex}{0ex}

\begin{document}

\chapter{Literature Review\bigskip\\~\&~\bigskip\\ Problem Identification}%
\lipsum

\end{document} 

在此处输入图片描述

答案2

    \documentclass{book}
    \usepackage{sectsty}

    \allsectionsfont{\centering}

    \begin{document}

    \chapter{Literature Review\newline \hspace*{20mm}\&\newline Problem Identification}
    \end{document}

在此处输入图片描述

相关内容