我正在使用 fncychap 来设计我的章节标题:
\usepackage[Sonny]{fncychap}
%-----------
\ChNameVar{\Huge\fontfamily{put}\selectfont\color{black}}
\ChNumVar{\Huge\fontfamily{pzc}\selectfont\color{blue}}
\ChTitleVar{\Huge\fontfamily{phv}\selectfont\scshape\color{green}}
这就是我得到的结果:
我不明白 ChNameVar、ChNumVar 和 ChTitleVar 如何工作,我的问题是:如何增加章节编号的大小。在本例中为“1”,使其更大...
编辑:另外,正如您所看到的,章节标题不是绿色,在这种情况下我做错了什么?
答案1
该数字由您设置\ChNumVar
,您使用 Zapf Chancery。注释掉该行或选择其他字体系列之一:
\documentclass[french]{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{xcolor}
\usepackage[Sonny]{fncychap}
%-----------
\ChNameVar{\Huge\fontfamily{put}\selectfont\color{black}}% Utopia
\ChNumVar{\Huge\fontfamily{pzc}\selectfont\color{blue}}% Zapf
\ChTitleVar{\Huge\fontfamily{phv}\selectfont\scshape\color{green}}% Helvetica
\begin{document}
\chapter {Contexte}\noindent\Large
\fontfamily{put}\selectfont ABCDEFGHIabcdefghj0123456\\
\fontfamily{pzc}\selectfont ABCDEFGHIabcdefghj0123456\\
\fontfamily{phv}\selectfont ABCDEFGHIabcdefghj0123456\\
\end{document}