Hello Latex Community,
I want to make bookmarks for the paper. What code is used for this? Any suggestion is appreciated.
Lynn
General ⇒ bookmarks
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
bookmarks
Hi, you can use hyperref or bookmark for this task.
If you have further questions, please prepare a minimal working example. This helps us to help you.
If you have further questions, please prepare a minimal working example. This helps us to help you.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
bookmarks
Thank you,Johannes. It works well.
But I want to change the color of reference links. The default color is green, I want to use blue.The code I used in preamble is
Lynn
But I want to change the color of reference links. The default color is green, I want to use blue.The code I used in preamble is
\usepackage[colorlink=true]{hyperref}
. How to so this? Thank you.Lynn
Last edited by cgnieder on Wed Jun 12, 2013 11:36 am, edited 1 time in total.
bookmarks
Hyperref allows you to set the different colors individually. IIRC the option for the citation link color is
They are all explained in hyperref's manual:
hyperref
Regards
Code: Select all
\usepackage{xcolor}
\usepackage{hyperref}
\hypersetup{
colorlinks = true ,
citecolor = blue
}

Regards
site moderator & package author
Re: bookmarks
Thank you,cgnieder. Your suggestion is of great help.
Lynn
Lynn