在以下最小示例中,我使用“color”包将整个文档(包括页码、页眉、脚注、脚注标记等)设为蓝色。但是,页码、页眉和脚注标记符号都只有黑色。如何将“所有内容”设为蓝色?
\documentclass{book}
\usepackage{color}
\usepackage{lipsum}
\begin{document}
\color{blue}
\pagenumbering{roman}
\tableofcontents
\vfill\eject
\pagenumbering{arabic}
\chapter{ONE}
This is a footnote in blue color\footnote{ \color{blue} blue color}
This is a second footnote\footnote{second footnote}.
\lipsum
\chapter{TWO}
\end{document}
答案1
页码以文档默认颜色设置,该颜色是有效的颜色,\begin{docuemnt}
因此只需向上移动\color
一行。
\documentclass{book}
\usepackage{color}
\usepackage{lipsum}
\color{blue}
\begin{document}
\pagenumbering{roman}
\tableofcontents
\vfill\eject
\pagenumbering{arabic}
\chapter{ONE}
This is a footnote in blue color\footnote{ \color{blue} blue color}
This is a second footnote\footnote{second footnote.}
\lipsum
\chapter{TWO}
\end{document}