大写索引标题带有 fncychap

大写索引标题带有 fncychap

你好,我正在使用 LyX 并且在序言中使用 \usepackage[Lenny]{fncychap}。

目录或索引列表的标题是小写的,但我希望它是大写的。

我必须输入什么命令以及在哪里才能完成我想要的操作?

答案1

使用tocloft包:

\documentclass{book}

\usepackage[Lenny]{fncychap}
\usepackage{tocloft}

%\renewcommand{\contentsname}{Table of contents} % change "Contents" to "Table of Contents"
\renewcommand{\cfttoctitlefont}{\center\hfill\large\bfseries\MakeUppercase} % change toc title to upper case
\renewcommand{\cftaftertoctitle}{\hfill}
%\renewcommand{\cftchapfont}{\scshape} %For uppercase TOC entries

\begin{document}
\tableofcontents
\chapter{Foo1}
Some text.

\chapter{Foo2}
Some text.

\end{document}

相关内容