我是 LaTeX 的新手,目前正在写论文。
我希望每个新部分都有一个单独的标题页,其中标明了部分编号、标题和几行解释部分内容的内容。我在 google 上搜索过,但只能找到使用 documentclass 的人的解决方案book/report
。但我使用的是 documentclass article。我也尝试过使用\usepackage{titlesec}
。
我希望它像这样: 每章前的章节标题页,以及每章的标题
我曾尝试在我的代码中使用以下代码,main.tex
但由于我无法使用\chapter
命令,因此出现错误,我尝试用它们替换,\section
但没有成功。
\titleclass{\chapter}{page}
\assignpagestyle{\chapter}{empty}
\titleformat{\chapter}
[display]
{\centering\Huge\bfseries}
{\chaptername\ \thechapter}
{0pt}
{\huge}
[\clearpage]
非常感谢您的帮助!