章节编号被章节名称取代

章节编号被章节名称取代

我想要这种风格 在此处输入图片描述 代替 在此处输入图片描述

如何实现这一点?我正在使用\usepackage[md,sc]{titlesec}小写字母样式来制作章节标题。

编辑:我的第一张图片中的“I”是以这种特定方式书写的“1”(可能是某种非标准字体?)。并且选项md, sc确实存在于titlesec在此处输入图片描述

答案1

这非常接近了。无需为titlesec-package 指定选项:

\documentclass{report}
\usepackage{ebgaramond}
\usepackage[T1]{fontenc}
\usepackage{blindtext, color}
\usepackage{titlesec}

\definecolor{gray75}{gray}{0.75}

\titleformat{\chapter}[hang]%
    {\scshape\Huge}%
    {\textcolor{gray75}{\fontencoding{U}\fontfamily{eur}\fontseries{b}\selectfont\thechapter}%
    \hspace{10pt}%
    \vrule width.5pt depth0.1ex%
    \hspace{10pt}}%
    {0pt}%
    {\Large}

\begin{document}
\chapter{Introduction}
\Blindtext[3]
\end{document}

花式篇章

相关内容