Generalbookmarks

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
lynnlee
Posts: 50
Joined: Fri Jan 04, 2013 10:15 am

bookmarks

Post by lynnlee »

Hello Latex Community,

I want to make bookmarks for the paper. What code is used for this? Any suggestion is appreciated.

Lynn

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

bookmarks

Post by Johannes_B »

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.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
lynnlee
Posts: 50
Joined: Fri Jan 04, 2013 10:15 am

bookmarks

Post by lynnlee »

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 \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.
User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

bookmarks

Post by cgnieder »

Hyperref allows you to set the different colors individually. IIRC the option for the citation link color is

Code: Select all

\usepackage{xcolor}
\usepackage{hyperref}
\hypersetup{
  colorlinks = true ,
  citecolor  = blue
}
They are all explained in hyperref's manual: hyperref

Regards
site moderator & package author
lynnlee
Posts: 50
Joined: Fri Jan 04, 2013 10:15 am

Re: bookmarks

Post by lynnlee »

Thank you,cgnieder. Your suggestion is of great help.

Lynn
Post Reply