格式化章节标题/页眉(报告类)

格式化章节标题/页眉(报告类)

我正在用该课程写一篇论文report。目前,每个章节的页面如下图所示。

在此处输入图片描述

请注意页面开头和“第 1 章”之间的较大空白。MWE 的计算公式为

\documentclass{report}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\usepackage[a4paper,top=3cm,bottom=3cm,left=3cm,right=3cm]{geometry}

\begin{document}
\chapter{Introduction}
\section{Biological background}

\end{document}

理想情况下,我想模仿下图所示的风格。

在此处输入图片描述

这可能吗?这是我第一次发帖,希望我的问题清楚。

答案1

这适合你吗?我曾经titlesec重新定义章节的格式。In\titlespacing *6表示垂直间距(在标题之后,因为它是最后一个参数)6ex,如果需要,可以稍微收缩/拉伸。

无关:inputenc不再需要加载,因为 utf8 已经成为默认的预期编码三年多了。

\documentclass{report}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}

\usepackage[a4paper, margin=3cm, showframe]{geometry}
\usepackage{titlesec}
\titleformat{\chapter}{\bfseries\Huge}{\chaptername~\thechapter.}{0.5em}{}
\titlespacing{\chapter}{0pt}{*0}{*6}

\begin{document}

\chapter{Introduction}
\section{Biological background}

\end{document} 

在此处输入图片描述

相关内容