LaTeX Tips

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 titlepage optional argument to documentclass:

\documentclass[titlepage]{article}

To add numbered bookmarks automatically opened to a PDF file, just use the hyperref package with some of its options:

\usepackage[bookmarks=true,bookmarksopen=true,bookmarksnumbered]{hyperref}