现有序言中的目录部分、图片列表和表格列表部分的字体颜色为蓝色。我该如何将其改回黑色?
答案1
您可能正在加载hyperref
这会导致内部链接被着色:
\documentclass{article}
\usepackage{hyperref}
\hypersetup{%
colorlinks=true,% Colour links without boxes
linkcolor=black}% Internal link colour is black
\begin{document}
\tableofcontents
\section{A section}
\subsection{A subsection}
\end{document}
其他内部链接可能仍会使用不同的颜色。为此,您需要设置特定的链接属性颜色。查看第节中列出的属性3.5 扩展选项在里面hyperref
文档。