需要更改“报告”文档类中标题章节的显示方式

需要更改“报告”文档类中标题章节的显示方式

我正在使用报告文档类,章节标题非常大,采用粗体字体,并且左对齐。我需要它们为 18pt,不加粗,并且居中。我还需要将“第 1 章”字样置于章节标题上方的中央。我的序言和章节如下所示:

\documentclass[12pt]{report}
\usepackage{graphicx}
\usepackage{fullpage}
\usepackage{setspace}\doublespacing    % important!
\textfloatsep 0.75in                   % important with double spacing




\begin{document}

\chapter{chapter title}

\end{document}.

我尝试进行如下修改:

\centerline{\chapter{chapter title}}

或者

\begin{center}
\chapter{chapter title}
\end{center}

但我不认为这会起作用......

有很多与此主题相关的帖子,但我不知道我的应用程序应该使用哪些确切的部件。请帮助解决我的具体情况。

答案1

您可以使用以下方法实现此目的titlesec包和\titleformat命令:

\titleformat{\chapter}[display]{\Large\centering}{Chapter \thechapter:}{0pt}{}{}

在这里您可以选择要修改的命令(\chapter),使用零间距的垂直模式(display0pt)并设置字体和居中(\Large是 18 pt 吗?)。

完整列表:

\documentclass[12pt]{report}
\usepackage{graphicx}
\usepackage{fullpage}
\usepackage{setspace}
    \doublespacing
    \textfloatsep 0.75in

\usepackage{titlesec}
    \titleformat{\chapter}[display]{\Large\centering}{Chapter \thechapter:}{0pt}{}{}

\begin{document}

    \chapter{chapter title}

\end{document}

相关内容