Wiki source code of LaTeX Tips

Show last authors
1
2 If you are using the report document class, the title page will be printed as a separate page; if you are using the article document class, the title will be printed at the top of the first page of text, unless you use the <tt>titlepage</tt> optional argument to <tt>\documentclass</tt>:
3 {code}
4 \documentclass[titlepage]{article}
5 {code}
6
7 To add numbered bookmarks automatically opened to a PDF file, just use the <tt>hyperref</tt> package with some of its options:
8 {code}
9 \usepackage[bookmarks=true,bookmarksopen=true,bookmarksnumbered]{hyperref}
10 {code}