我正在使用 Lenny 章节样式fncychap
,我想更改章节编号的颜色。我发现“使用 fncychap 时如何更改字体?”并遵循那里的建议制作:
\documentclass[12pt]{book}
\usepackage{xcolor}
\usepackage[T1]{fontenc}
\usepackage[Lenny]{fncychap}
\ChNumVar{\fontsize{60}{62}\usefont{OT1}{ptm}{m}{n}\selectfont\color{blue}}
\begin{document}
\chapter{Title}
Lorem ipsum
\end{document}
这几乎可行,但有一个不幸的副作用,那就是也会改变盒子的颜色。有人知道如何解决这个问题吗?
答案1
使用\textcolor
而不是\color
:
\documentclass[12pt]{book}
\usepackage{xcolor}
\usepackage[T1]{fontenc}
\usepackage[Lenny]{fncychap}
\ChNumVar{\fontsize{60}{62}\usefont{OT1}{ptm}{m}{n}\selectfont\textcolor{blue}}
\begin{document}
\chapter{Title}
Lorem ipsum
\chapter{Another Title}
Lorem ipsum
\end{document}