BibTeX, biblatex and biberWhy do I have highlight on reference's number on Overleaf?

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Sam_Land
Posts: 2
Joined: Mon Nov 14, 2016 8:25 am

Why do I have highlight on reference's number on Overleaf?

Post by Sam_Land »

I'm using Overleaf.com to prepare my thesis.

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
Screenshot 2016-11-14 15.29.47.png (11.96 KiB) Viewed 7959 times

Recommended reading 2024:

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

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?

Post by Johannes_B »

Package hyperref is making those boxes for your readers. They indicate a hyperlink to directly jump to the bibliography. They won't be printed.

You can toggle that off by using \hypersetup{colorlinks=false}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
User avatar
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?

Post by Stefan Kottwitz »

Hi Sam,

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
LaTeX.org admin
Post Reply