我使用大致以下的设置
\documentclass[11pt]{book}
\usepackage{hyperref}
\usepackage[bf]{caption}
\usepackage{subcaption}
\usepackage{amssymb}
\usepackage[fleqn]{amsmath,mathtools}
\usepackage{fancyhdr}
\usepackage[Lenny]{fncychap}
\begin{document}
*some stuff*
\mainmatter
\input{Chapters/Chapter1}
etc.
\end{document}
我认为“Lenny”章节样式看起来非常不错。我只想更改一个小细节:章节标题不以粗体打印。对于每个章节,更改这一点都很容易:我只需写\chapter{{\bf TITLE}}
。但是,我也希望目录和“符号”页面也采用这种样式。如何做到这一点?
答案1
与你相反,我发现 Lenny 章节的风格是我见过的最丑陋的风格之一。
添加
\ChTitleVar{\Huge\bfseries}
你的序言。
\documentclass[11pt]{book}
\usepackage[bf]{caption}
\usepackage{subcaption}
\usepackage{amssymb}
\usepackage[fleqn]{amsmath,mathtools}
\usepackage{fancyhdr}
\usepackage[Lenny]{fncychap}
\usepackage{hyperref}
\ChTitleVar{\Huge\bfseries}
\begin{document}
\mainmatter
\chapter{A nice title}
\end{document}
顺便说一下,hyperref
应该最后加载。
通过不使用 Helvetica 和 Times,您可以稍微改善外观。
\documentclass[11pt]{book}
\usepackage{fix-cm}
\usepackage[bf]{caption}
\usepackage{subcaption}
\usepackage{amssymb}
\usepackage[fleqn]{amsmath,mathtools}
\usepackage{fancyhdr}
\usepackage[Lenny]{fncychap}
\usepackage{hyperref}
\ChTitleVar{\Huge\bfseries}
\ChNameVar{\large\bfseries}
\ChNumVar{\fontsize{60}{62}\bfseries}
\begin{document}
\mainmatter
\chapter{A nice title}
\end{document}
您可能想要的是 ,而\bfseries
不是。\ChNumVar
\fontseries{b}\selectfont
但是,它仍然丑陋得无可救药。