Skip to content

Commit

Permalink
added option to have numbers in the bookmark pane (PDF output)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed Jan 11, 2014
1 parent 158ffb7 commit 62cf790
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/latexgen.cpp
Expand Up @@ -464,7 +464,11 @@ static void writeDefaultHeaderPart1(FTextStream &t)
{ {
// To avoid duplicate page anchors due to reuse of same numbers for // To avoid duplicate page anchors due to reuse of same numbers for
// the index (be it as roman numbers) // the index (be it as roman numbers)
t << "\\hypersetup{pageanchor=false}\n"; t << "\\hypersetup{pageanchor=false,\n"
<< " bookmarks=true,\n"
<< " bookmarksnumbered=true,\n"
<< " pdfencoding=unicode\n"
<< " }\n";
} }
t << "\\pagenumbering{roman}\n" t << "\\pagenumbering{roman}\n"
"\\begin{titlepage}\n" "\\begin{titlepage}\n"
Expand Down

0 comments on commit 62cf790

Please sign in to comment.