我想修改章节标题。每次创建新章节时,我都想要一张简单的卡片(类似于标题页的东西:类似于这个问题的第一个答案创建标题页) 插入。
有没有一个包可以让我做到这一点,还是我必须摸索着处理代码?任何正确的方向的指示都将不胜感激!
答案1
以下是使用titlesec
包;根据需要调整设置:
\documentclass{article}
\usepackage{xcolor}
\usepackage{titlesec}
\usepackage{lipsum}% just to generate text for the example
\definecolor{titlepagecolor}{RGB}{0,65,120}
\newcommand\sectionbreak{\clearpage}
\titleformat{\section}[display]
{%
\pagecolor{titlepagecolor}\thispagestyle{empty}%
\normalfont\Huge\bfseries\color{white}\filcenter\titlerule[2pt]\vskip5pt%
}
{\thesection}
{10pt}
{}
[{\vskip2pt\titlerule[2pt]\sectionbreak\nopagecolor}]
\begin{document}
\section*{Test unnumbered section}
\lipsum[1-10]
\section{Test numbered section}
\lipsum[1-10]
\end{document}