Viewers for PDF, PS, and DVI ⇒ How to suppess navigation pane in Acrobat Reader
How to suppess navigation pane in Acrobat Reader
Hi, I'm new to the forum and have benefited a lot in the past from your experience (hoping for more of the same!).
I am using TexnicCenter to compile my tex files using pdflatex. On everything that I compile, Acrobat Reader's navigation panel appears on the left side of my compiled pdf (I do not have professional version). Currently, I need to use the mouse, or hit f4, to make it disappear, and it's, well, rather annoying.
I have searched and searched, but am unable to find a LaTeX command to suppress this navigation panel (with bookmarks, etc.) from appearing. Is there such a command, and if so, can someone tell me what it is? Thanks!
I am using TexnicCenter to compile my tex files using pdflatex. On everything that I compile, Acrobat Reader's navigation panel appears on the left side of my compiled pdf (I do not have professional version). Currently, I need to use the mouse, or hit f4, to make it disappear, and it's, well, rather annoying.
I have searched and searched, but am unable to find a LaTeX command to suppress this navigation panel (with bookmarks, etc.) from appearing. Is there such a command, and if so, can someone tell me what it is? Thanks!
How to suppess navigation pane in Acrobat Reader
I searched for this as well, but couldn't find out how to do it. As I didn't actually want the bookmarks, just the internal links, I ended up totally suppressing the bookmarks.
Code: Select all
\usepackage[bookmarks=false]{hyperref}
- localghost
- Site Moderator
- Posts: 9201
- Joined: Fri Feb 02, 2007 12:06 pm
How to suppess navigation pane in Acrobat Reader
I'd say that an appropriate option to the hyperref package should to the trick.
Best regards and welcome to the board
Thorsten
Code: Select all
\usepackage[bookmarksopen=false]{hyperref}
Best regards and welcome to the board
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
How to suppess navigation pane in Acrobat Reader
Perhaps it's the combination of packages and options I use, but "bookmarksopen=false" doesn't work for me.
Code: Select all
\usepackage[pdftex,a4paper,ps2pdf,linkbordercolor={0 0 0},pdfborder={0 0 0},bookmarks=false]{hyperref}
How to suppess navigation pane in Acrobat Reader
Thanks localghost and php1ic,
Now I'm getting the following error now when I try to compile: "option clash for package hyperref" (and I'm getting it whether I use
I get the same message on 2 separate tex files; while one of the document classes is for a PhD dissertation (proprietary?), the other is Beamer. In both cases I do not believe I have specified anything else for the hyperref package, so I'm not sure what's clashing here.
Now I'm getting the following error now when I try to compile: "option clash for package hyperref" (and I'm getting it whether I use
\usepackage[bookmarks=false]{hyperref}
or \usepackage[bookmarksopen=false]{hyperref}
)I get the same message on 2 separate tex files; while one of the document classes is for a PhD dissertation (proprietary?), the other is Beamer. In both cases I do not believe I have specified anything else for the hyperref package, so I'm not sure what's clashing here.
Last edited by cgnieder on Wed Aug 22, 2012 10:29 pm, edited 1 time in total.
- localghost
- Site Moderator
- Posts: 9201
- Joined: Fri Feb 02, 2007 12:06 pm
How to suppess navigation pane in Acrobat Reader
My last reply was an assumption thus a random shot. If your solution works, I'm sure it will be useful for the OP.php1ic wrote:Perhaps it's the combination of packages and options I use, but "bookmarksopen=false" doesn't work for me. [...]
For the first case try inserting this option into the option list for the document class. The class will pass it to hyperref. For the beamer class you also have to add something to the option list.ralphey wrote:Now I'm getting the following error now when I try to compile: "option clash for package hyperref" (and I'm getting it whether I use \usepackage[bookmarks=false]{hyperref} or \usepackage[bookmarksopen=false]{hyperref} )
I get the same message on 2 separate tex files; while one of the document classes is for a PhD dissertation (proprietary?), the other is Beamer. In both cases I do not believe I have specified anything else for the hyperref package, so I'm not sure what's clashing here.
Code: Select all
\documentclass[...,hyperref={bookmarks=false},...]{beamer}
Code: Select all
\documentclass[...,hyperref={pdfpagemode=FullScreen},...]{beamer}
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Re: How to suppess navigation pane in Acrobat Reader
Thanks for your excellent suggestions - so I understand correctly, for the non-Beamer tex file are you saying to pass just the option into the document class, like so:
\documentclass[...,bookmarks=false,...]{xyz}?
For the Beamer file, I got it to work great with the fullscreen command. With the hyperref={bookmarks=false} command in the \documentclass options, I also get the PDF to compile, and NO NAVIGATION PANEL!!!, but there are tons of errors, most read "Undefined control sequence <argument> \@outlinefile", or "Missing number, treated as zero. <to be read again>" -> it looks like they are mostly dealing with sections and subsections of my Beamer tex file. Any idea how to remedy this?
\documentclass[...,bookmarks=false,...]{xyz}?
For the Beamer file, I got it to work great with the fullscreen command. With the hyperref={bookmarks=false} command in the \documentclass options, I also get the PDF to compile, and NO NAVIGATION PANEL!!!, but there are tons of errors, most read "Undefined control sequence <argument> \@outlinefile", or "Missing number, treated as zero. <to be read again>" -> it looks like they are mostly dealing with sections and subsections of my Beamer tex file. Any idea how to remedy this?
- localghost
- Site Moderator
- Posts: 9201
- Joined: Fri Feb 02, 2007 12:06 pm
How to suppess navigation pane in Acrobat Reader
Exactly. The class should pass the option to the hyperref package.ralphey wrote:Thanks for your excellent suggestions - so I understand correctly, for the non-Beamer tex file are you saying to pass just the option into the document class, like so:
\documentclass[...,bookmarks=false,...]{xyz}? [...]
Perhaps this contradicts some essential settings in beamer. To find that out, you have to build a minimal working example (MWE) which reproduces the misbehaviour. Follow exactly the instructions for building a MWE.ralphey wrote:[...] For the Beamer file, I got it to work great with the fullscreen command. With the hyperref={bookmarks=false} command in the \documentclass options, I also get the PDF to compile, and NO NAVIGATION PANEL!!!, but there are tons of errors, most read "Undefined control sequence <argument> \@outlinefile", or "Missing number, treated as zero. <to be read again>" -> it looks like they are mostly dealing with sections and subsections of my Beamer tex file. Any idea how to remedy this?
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
How to suppess navigation pane in Acrobat Reader
This option for the hyperref package seems to do what you want:
In this case, the bookmarks will still be created but they will not be displayed when Adobe Reader launches.
Code: Select all
\usepackage[pdfpagemode=UseNone]{hyperref}
Last edited by cgnieder on Wed Aug 22, 2012 10:30 pm, edited 1 time in total.
-
- Posts: 7
- Joined: Mon Apr 16, 2018 11:04 am
How to suppess navigation pane in Acrobat Reader
I would note that some slowing bookmarks infuriate me, but now I carry out to fix them quite simply