我问的是是否存在一个包来定制部分或子部分,就像fncychap
用于定制章节一样。我希望我的部分更加美观,也许可以添加一些规则或一些装饰。
答案1
这些取自用户手册titlesec
(见附录,第 19 页)
\documentclass{book}
\usepackage{titlesec}
\usepackage{lipsum}
\titleformat{\section}[frame]
{\normalfont}
{\filright
\footnotesize
\enspace SECTION \thesection\enspace}
{8pt}
{\Large\bfseries\filcenter}
%This can be used for chapters also
\titleformat{\chapter}[display]
{\normalfont\Large\filcenter\sffamily}
{\titlerule[1pt]%
\vspace{1pt}%
\titlerule
\vspace{1pc}%
\LARGE\MakeUppercase{\chaptertitlename} \thechapter}
{1pc}
{\titlerule
\vspace{1pc}%
\Huge}
\begin{document}
\chapter{My chapter}
\lipsum[3]
\section{My section}
\lipsum[1-2]
%
\titleformat{\section}
{\titlerule
\vspace{.8ex}%
\normalfont\itshape}
{\thesection.}{.5em}{}
\section{My another section}
\lipsum[2]
\end{document}