我制作了一本关于某个主题的词典。我按字母顺序排列了这些概念。我想要实现的是给每个字母添加一些“标题”。如果我使用,\chapter{J}
我会得到:“第 1 章”“J”等等。我想显示一个有风格的字母(哥特式或类似的东西),没有“章节”这个词,但在目录中,我希望它显示为 J。这可能吗?
答案1
cfr-initials
您可以使用字体和之一来实现这一点titlesec
。以下是可能的代码:
\documentclass[a4paper, 11pt]{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{GoudyIn}
\usepackage[x11names]{xcolor}
\usepackage{titlesec}
\usepackage{lipsum}
\usepackage{hyperref}
\begin{document}
\tableofcontents
\renewcommand{\thechapter}{\Alph{chapter}}
\titleformat{\chapter}[block]{\filcenter\color{Coral3}\fontsize{48}{60}\selectfont}{\GoudyInfamily\thechapter}{0pt}{}
\chapter{}
\lipsum[11]
\chapter{}
\lipsum[12]
\end{document}