章节标题样式?

章节标题样式?

嗨,我偶然发现了一篇布局精美的博士论文。我特别喜欢它的章节标题在此处输入图片描述

我也链接了以下论点:http://www.ri.cmu.edu/pub_files/pub4/pantofaru_caroline_2008_1/pantofaru_caroline_2008_1.pdf。有人知道如何获取本章标题吗?欢迎提出任何建议!

答案1

这可以通过 来完成titlesec。这是一个示例。

\documentclass{book}

\usepackage{titlesec}
\titleformat{\chapter}[display]
{\normalfont\Large\bfseries}{\MakeUppercase{\chaptertitlename}\ \thechapter}{10pt}{\titlerule[1pt]\vskip12pt\Large\filcenter\MakeUppercase}

\titleformat{name=\chapter,numberless}[display]
{\normalfont\Large\bfseries}{}{0pt}{\Large\filcenter\MakeUppercase}[{\vskip12pt\titlerule[1pt]}]

\titlespacing*{\chapter} {0pt}{20pt}{40pt}                    %% adjust  suit
\titlespacing*{name=\chapter,numberless} {0pt}{0pt}{40pt}     %% adjust to suit
\begin{document}
  \tableofcontents
  \chapter{Introduction}
\end{document}

在此处输入图片描述

在此处输入图片描述

答案2

抱歉,这是我无耻的自我推销!这是我为我的论文创建的简单风格。这不是 OP 想要的风格,但可能是 OP 或有人也会喜欢这种风格。

\usepackage{titlesec}
\titleformat{name=\chapter}[display]
{\chapterfont\bfseries\huge}
{\raisedrule[0.175em]{1pt}\Large\filleft\textsc{ \chaptertitlename} \Huge\thechapter}
{2ex}
{\vspace{1ex}%
\filcenter}
[\vspace{1ex}]

在此处输入图片描述

相关内容