我有个新手问题:我有一份由两部分组成的文档,我想为每部分使用不同的章节样式;我查过这个数据库,也“谷歌”过,但无济于事。有什么想法吗?谢谢!
答案1
这对您有帮助吗?所选的特定章节样式是随机且糟糕的。如果您想更改章节、小节、部分样式,您同样需要重新定义它们。
\documentclass[10pt]{book}
\usepackage{titlesec}
%original definition
\titleformat{\chapter}[display]
{\normalfont\bfseries\filcenter}{\LARGE\thechapter}{1ex}
{\titlerule[2pt]\vspace{2ex}}[\vspace{1ex}{\titlerule[2pt]}]
\titleformat{name=\chapter,numberless}[display]
{\normalfont\LARGE\bfseries\filcenter}{}{1ex}
{\vspace{2ex}}[\vspace{1ex}]
%end of original definition
\begin{document}
\part{A Part}
\chapter{A chapter}
\chapter{Another chapter}
%another definition
\titleformat{\chapter}[display]
{\normalfont\huge\bfseries}{\filcenter\underline{\MakeUppercase{{\chaptertitlename}}\ \thechapter}}{20pt}{\Huge}
%end of other definition
\part{A second Part}
\chapter{Three plus Three}
\chapter{Four plus Four}
\end{document}