2

I'm producing a small document where only unnumbered subsections and levels below are used, and would like PDF bookmarks to be created for them.

I tried hyperref and bookmark packages and did not find any option for this. How do I make it automatically generate such bookmarks? What's the most elegant way of doing this?

Update: corrected inaccurate question statement. Sorry.

1 Answers1

2

A possible solution (possible, since it is not quite clear what the problem might be)

\documentclass{article}

\usepackage[bookmarksopen=true,bookmarksopenlevel=4]{hyperref}

\usepackage{bookmark}

\begin{document}

\subsection{First}
\subsubsection{Below first}
\subsection{Second}

\end{document}

enter image description here