GeneralProblems with references

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
ddd91
Posts: 4
Joined: Sun Aug 09, 2015 12:05 pm

Problems with references

Post by ddd91 »

Hi,
I'm writing my graduation thesis on Latex and I have a problem with my references.
When I create my pdf file, from the Latex one, all the references and the quotes are colored! The references to some other chapters and to figures are red, the quotes are green, and I don't want it. How can I solve this problem??
I wrote down the beginning of my script.
Thank's!!

Code: Select all

\documentclass[a4paper,12pt]{report}
\usepackage[T1]{fontenc} 
\usepackage[utf8]{inputenc}
\usepackage[english,italian]{babel}
\usepackage[autostyle,italian=guillemets]{csquotes}
\usepackage{guit}
\usepackage{lipsum}
\usepackage{url}
\usepackage{afterpage}
\usepackage[colorlinks]{hyperref}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{mathtools}
\usepackage{bm}
\usepackage{xcolor}
\usepackage{amsthm}
\usepackage[output-decimal-marker={,}]{siunitx}
\usepackage{textcomp}
\usepackage{booktabs}
\usepackage{caption}
\usepackage{subfig}
\usepackage{graphicx}
\usepackage{bmpsize}
\usepackage{float}
\usepackage{caption}
\captionsetup{format=hang, labelfont={sf,bf}, font=small}
\DeclarePairedDelimiter{\abs}{\lvert}{\rvert}
\DeclarePairedDelimiter{\norma}{\lVert}{\rVert}
\DeclareMathOperator{\sng}{sng}
\DeclareMathOperator{\Realpart}{Re}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

rais
Posts: 419
Joined: Sun Nov 16, 2014 8:51 pm

Problems with references

Post by rais »

ddd91 wrote:When I create my pdf file, from the Latex one, all the references and the quotes are colored! The references to some other chapters and to figures are red, the quotes are green, and I don't want it. How can I solve this problem??
Where's the confusion?
You explicitly requested colored links, now you don't want them? Go figure...

Code: Select all

\usepackage[colorlinks]{hyperref}
should be the line responsible (which you're loading too soon anyway, IMHO).

KR
Rainer
Post Reply