When rendering my .Rmd file as a pdf the heading for "Author Note" is the last line of the cover page, with the text then starting on p2. Where do I go to insert a \newpage
command? Or is there a better way to force the "author note to start on p. 2?
Asked
Active
Viewed 211 times
1

Emilio M. Bruna
- 297
- 1
- 3
- 14
1 Answers
1
As mentioned here you could put it in the note
field of the YAML front matter:
note: "\newpage"
If you also have a note text try
note: |
This is my note.
\newpage

crsh
- 1,699
- 16
- 33
-
Unfortunately I have a 'note' as well, so I can't use that part of the front matter to force the second page. – Emilio M. Bruna Sep 11 '20 at 20:42
-
1close: it needed only one slash: `\newpage` Thank you. Perhaps edit? – Emilio M. Bruna Sep 14 '20 at 21:47