论文索引颜色为红色

论文索引颜色为红色

我真的不知道为什么我的索引是红色的。我在代码的任何部分都没有使用颜色。有人能帮我吗?我必须在明天之前完成它!!非常感谢

代码如下:

\documentclass[12pt,a4paper,oneside,openright]{book}

  \usepackage{packages} % inserisce tutti le macro necessarie per il 
                        % funzionamento

\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{graphicx}
\usepackage{array}
\usepackage{amssymb}
\usepackage{booktabs}
\usepackage{subfloat}
\usepackage{subfig}
\usepackage{rotating}
\usepackage{amsthm}
\usepackage{caption}


\theoremstyle{plain} 
\newtheorem{thm}{Teorema}[section] 
\newtheorem{cor}[thm]{Corollario} 
\newtheorem{lem}[thm]{Lemma} 
\newtheorem{prop}[thm]{Proposizione} 


\theoremstyle{definition} 
\newtheorem{defn}{Definizione}[chapter] 

\theoremstyle{remark} 
\newtheorem{oss}{Osservazione} 


\usepackage{amsmath}
\algdef{SE}[EVENT]{Event}{EndEvent}[1]{\textbf{upon event}\ #1\ \algorithmicdo}{\algorithmicend\ \textbf{event}}%
\algtext*{EndEvent}
\algdef{SE}[EVENT]{When}{EndWhen}[1]{\textbf{when}\ #1\ \algorithmicdo}{\algorithmicend\ \textbf{when}}%
\algtext*{EndWhen}

\setstretch{1.3}  %interlinea, mettere 1 per singola da usarsi per le bozze!!!

\begin{document}


\theoremstyle{definition}
\newtheorem{definizione}{Definizione}
\newtheorem{lemma}{Lemma}
\theoremstyle{plain}
\newtheorem{teorema}{Teorema}


% genera la prima pagina

\titlep

% indica l'inizio della parte introduttiva
\frontmatter
\color{black}
   \input{ringraziamenti}
   \tableofcontents
   \listoffigures
  %\listoftables
%   \listofalgorithms

\clearpage

% indica l'inizio della parte centrale
\mainmatter
      \input{introd} % attenzione! guardare introd.tex per vedere come e' fatto
    \input{cap2}
    \input{cap3}
    \input{cap4}
    \input{cap5}
    \input{cap6}

% da qui in poi \chapter genera un'appendice
%\appendix
%\renewcommand{\chaptermark}[1]{\markboth{{\appendixname}\ \thechapter.\hspace{1em}#1}{}}

      %\input{app1}

\clearpage
\addcontentsline{toc}{chapter}{Bibliografia}
\begin{thebibliography}{9}

%\cfoot{\emph{Finito di stampare il \today\/ utilizzando \LaTeXe}}
\end{document}

答案1

我猜想在某个未知(对我们来说)的文件中存在类似的东西。使用提供的代码片段,没有任何定义可以使您的目录(我猜想您指的是目录而不是索引,尽管意大利语中它们是“索引”)变成红色。很可能,您会在我不知道的 CTAN 包\usepackage[colorlinks,linkcolor=red]{hyperref}文件中找到此定义。packages.sty

相关内容