我如何获得此章节标题样式?我的看起来不太好。默认的 LaTex 样式看起来不是这样的。我必须更改 .cls 吗?
现在我有这个,但它看起来不太清晰:
我找到了一个简单的解决方案。\hrule
缺少了,也添加\scshape
到章节中而不是\bfseries
:
\documentclass{book}
\usepackage{sectsty}
\usepackage{lipsum}
\chapterfont{\centering}
%\sectionfont{\centering}
%\subsectionfont{\centering}
\begin{document}
\chapter{Test Chapter}
\section{Test Section}
\lipsum[7]
\subsection{Test Subsection}
\end{document}
答案1
以下使用titlesec
接近您所希望的结果。
\documentclass{book}
\usepackage{titlesec}
\usepackage{lipsum}
\begin{document}
\tableofcontents
\listoffigures
\listoftables
\titleformat{\chapter}[display]
{\Large}
{\filcenter\textsc{\chaptertitlename} \thechapter}
{2ex}
{\bfseries\filcenter}
[\vspace{5ex}\titlerule]
\chapter{Test Unnumbered Chapter}
\lipsum[1-2]
\chapter{Test Numbered Chapter}
\lipsum[1-2]
\end{document}