BibTeX, biblatex and biber ⇒ Why do I have highlight on reference's number on Overleaf?
Why do I have highlight on reference's number on Overleaf?
But I notice that my reference citation number are surrounded by colored, rectangular highlight.
I had used overleaf before but I didn't have such highlights. And I failed to find any difference on latex source code of two documents.
The attachment file is the screenshot of such "colored, rectangular highlight".
Any help is appreciated.
- Attachments
-
- Screenshot 2016-11-14 15.29.47.png (11.96 KiB) Viewed 8178 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Why do I have highlight on reference's number on Overleaf?
You can toggle that off by using
\hypersetup{colorlinks=false}
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Why do I have highlight on reference's number on Overleaf?
welcome to the forum!
Or
\hypersetup{hidelinks}
or when loading:
\usepackage[hidelinks]{hyperref}
is your thesis is printed anyway - no visible links needed - no bold, no color, no border, no highlighting.
Or
\hypersetup{
colorlinks=false,
pdfborder={0 0 0},
}
in case Overleaf might use an older version of
hyperref
.Stefan