[Tex/LaTex] how change color of cite

citing

my code is \cite{chang2001}.

and

@article{chang2001,
  title={Training v-support vector classifiers: theory and algorithms},
  author={Chang, Chih-Chung and Lin, Chih-Jen},
  journal={Neural computation},
  volume={13},
  number={9},
  pages={2119--2147},
  year={2001},
  publisher={MIT Press}
}

and the result is color blue, i need color black

enter image description here

and configuration is

\usepackage[utf8]{inputenc}

\renewcommand{\refname}{Bibliografía} % Bibliografía en español
    \addcontentsline{toc}{chapter}{Bibliografía} % Agrega la bibliografía al Índice.
    \bibliographystyle{apalike} % formato APA 

    \bibliography{perifericos/bibliografia} 

Best Answer

  • Package hyperref has an option hidelinks to hide the links from the user (no visual markup).

  • The color of link categories can be changed with options linkcolor, filecolor, urlcolor, citecolor, ..., if option colorlinks is used. The color of rectangles around links are changed with linkbordercolor, linkfilecolor, ..., see the hyperref manual.

Related Question