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 8179 times

Recommended reading 2024:

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

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

User avatar
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: 10359
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