精美的章节标题

精美的章节标题

在此处输入图片描述

我怎样才能像这样用 LaTeX 写章节标题?

答案1

最简单的方法是使用 »格特查普« 包。它精确地定义了此章节样式。但那是不是这个包的主要用途。

\documentclass[11pt]{report}
\usepackage[T1]{fontenc}
\usepackage[newcentury]{quotchap}
\usepackage{blindtext}

\begin{document}
  \blinddocument
\end{document}

在此处输入图片描述


附录:

正如评论中提到的,你也可以使用»标题安全« 来获得该章节风格。

\documentclass[11pt]{report}
\usepackage[T1]{fontenc}
\usepackage{titlesec}
\usepackage{xcolor}
\usepackage{blindtext}

\newcommand{\chapnumfont}{%     % define font for chapter number
  \usefont{T1}{pnc}{b}{n}%      % choose New Chancery, bold, normal shape
  \fontsize{100}{100}%          % font size 100pt, baselineskip 100pt
  \selectfont%                  % activate font
}
\colorlet{chapnumcol}{gray!75}  % color for chapter number

\titleformat{\chapter}[display]
{\filleft\bfseries}
{\filleft\chapnumfont\textcolor{chapnumcol}{\thechapter}}
{-24pt}
{\Huge}

\begin{document}
  \blinddocument
\end{document}

在此处输入图片描述

相关内容