更改文章中的章节命令

更改文章中的章节命令

在文档类文章中,如何更改命令\section,使其行为与文档类书中的命令完全相同\chapter?即写入章节号,然后写入标题,并在页面顶部留出一些空白。

抱歉,如果我的问题没有表述清楚,或者这个问题可能已经存在,但我找不到任何东西。

答案1

这是使用 titlesec 包的解决方案

\documentclass{article}
\usepackage{titlesec}
\usepackage{lipsum}

\titleformat{\section}[display]
          {\clearpage\vspace*{50pt}%
          \normalfont\huge\bfseries}%
          {Section \thesection}%
          {20pt}%
          {\Huge}%
          [\vspace{40pt}]
\begin{document}
\lipsum[1-2]
\section{test}
\lipsum[1]
\end{document}

相关内容