\documentclass[12pt,a4paper]{report}
是我的文档格式。书写\chapter{Chapter one}
将在新页面上创建新章节,标题上方有大量空白。书写\section{Section one}
将创建一个小标题,其周围几乎没有空白。
我怎样才能用 的样式覆盖 的样式\chapter{}
,\section{}
使它们看起来一样?目录的标题是否也定义为未编号标题?我之所以问这个问题,是因为我希望目录的标题(以及表格/图表/等的列表)也\chapter{}
看起来像标题。\section{}
答案1
使用memoir
带有article
选项的类,而不是report
类。选项使\chapter
s 表现为\section
s、section
assubsection
等。
% \documentclass[...]{report}
\documentclass[article,...]{memoir}
and what you have already