如何使用 scrbook 在 XeLaTeX 中创建本章标题样式

如何使用 scrbook 在 XeLaTeX 中创建本章标题样式

在此处输入图片描述

我想为我的报告格式化此章节标题。我不确定如何创建它,我想知道是否有人可以帮我。

答案1

在该包的帮助下titlesec

在此处输入图片描述

\documentclass{report}
\usepackage{lipsum} % For dummy text using the \lipsum command. Do not use in real document.
\usepackage{titlesec}

\titleformat{\chapter}[display]
  {\LARGE\raggedleft\bfseries}
  {\titlerule \vspace{5pt}\Large\normalfont\textsc{\chaptertitlename}~\thechapter}
  {5pt}
  {\titlerule \vspace{5pt}} 
  
\begin{document}
\chapter{Introduction}
\lipsum
\end{document}

相关内容