Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to cancel the \hypersetup in 0rg-mode of Emacs

Tags:

latex

org-mode

Org-mode is a power editor. I use it to write scientific notes and produce them into tex/PDF files.

When I produce .org file into .tex or .pdf file, some codes are generated automatically by org-mode, such as:

 \hypersetup{
    pdfkeywords={},
    pdfsubject={},
    pdfcreator={Emacs Org-mode version 7.8.11}}

Those codes make some information occupied the first page of PDF file, that is useless for me. How to prevent those codes from appearing on the tex-file produced and its PDF?

like image 772
Zoe Rowa Avatar asked Jul 06 '12 15:07

Zoe Rowa


1 Answers

I use this in my init file:

(setq org-latex-with-hyperref nil)

Then you have to put your own hyper setup in where you want it.

like image 120
John Kitchin Avatar answered Oct 12 '22 01:10

John Kitchin