11

I was wondering if there is a way to start page numbering from the second page and/or print page numbers starting from second page in R Markdown when creating pdf output?

This would be useful when adding a title page to the document.

Thanks!

Kivis
  • 924
  • 2
  • 10
  • 20

1 Answers1

12

After receiving useful comments I solved issue by adding \pagenumbering{gobble} just before the title and \pagenumbering{arabic} after the title page as follows:

\pagenumbering{gobble} 
\centerline{\includegraphics[height=2in]{youricon.png}}
\large{TITLE}
\pagenumbering{arabic} 
 ......
 Other chapters of the document

Note that this starts numbering from the page after the title, i.e. page number 1 will be printed on the following page after the title page.

Kivis
  • 924
  • 2
  • 10
  • 20