将章节移至顶部并更改其格式

将章节移至顶部并更改其格式

我想将章​​节标题的位置移到页面顶部,并将其格式更改为:“0 简介”“1 内容”“1.1 内容”“2 内容”等,而不是“第 1 章 - 内容”

我想要做的事情的描述

而且,如何改变章节标题和文本开头之间的距离?

非常感谢您的任何建议。

答案1

将 类(和memoir的超集)与章节样式结合使用。bookreportsection

% chapstyleprob.tex  SE 567585
\documentclass{memoir}
\usepackage{lipsum}

\chapterstyle{section} %% this seems to be the style you want
\setlength{\beforechapskip}{-1cm} %% raise title, adjust to suit
\begin{document}
\setcounter{chapter}{-1}  %% first chapter number will be 0
\chapter{Introduction}
\thispagestyle{empty}
\lipsum[1]
\section{First section}
\lipsum[2]
\end{document}

在此处输入图片描述

相关内容