I have a PDF file created with WinEdt 9 (see picture 1). The tex source file is made with class book, obviously generator bookmarks.
\documentclass[12pt]{book}
\usepackage[colorlinks=true,linkcolor=blue,urlcolor=black]{hyperref}
\usepackage{bookmark}
\begin{document}
\chapter{Chapter [One}
\section{Section two}
\subsection{Section one}
\subsection{Section two}
\section{Section three}
\subsection{Section one}
\subsection{Section two}
\section{Section four}
\subsection{Section one}
\subsection{Section two}
\subsection{Section three}
\end{document}
Whenever compiled using PDFLaTeX always have to deploy each of the bookmarks labeled (+). And that is annoying when there are many subgroups (so to speak) of bookmarks with (+).
Specifically: I want to know if there is any code that you can add to the preamble of my tex file so that the resulting PDF output by default as in picture 2, with bookmarks (+) fully deployed (-).
I hope let me understand.
Thanks in advance for your help.




\documentclassand end\end{document}. – cfr Jan 18 '16 at 22:46bookmarksopen=true. My viewer ignores it, along with thebookmarksdefault for showing them at all. But presumablyacroreadshould respect it. (I would test butacroreadtakes half a year to even think about possibly considering opening something, so I figure it will be quicker for you if you're already using it.) – cfr Jan 18 '16 at 23:36\usepackage[open]{bookmark}– egreg Jan 18 '16 at 23:38acroreadis insanely slow on Linux so I avoid using it whenever I have any kind of practical alternative. – cfr Jan 18 '16 at 23:45pdfstartview=FitH. There's a list of possible values on page 11 of the manual.FitHlooks most likely, but there are others if that's not quite right. – cfr Jan 19 '16 at 00:13\usepackage [pdfstartview=FitH]{hyperref}Many Thanks. – mathsalomon Jan 19 '16 at 00:17