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 7958 times
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- 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: 10335
- 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