Avoiding a space for a title in R markdown v2

I would not want to have an empty spot in my PDF release, which certainly means there is no header method in R markdown when inserting pdf.

I would like that I did not have a name and the text began with a page request. Can someone tell me how to do this?

My code so far looks like this:

---
output: 
   pdf_document:
      highlight: pygments
      toc: false
      number_sections: true
---
text

Thanks for any advice!

+4
source share
1 answer

For this level of customization, you will want to modify the TeX template used by Pandoc:

  • Copy the default TeX template used by rmarkdown (you can find the path by running system.file("rmd/latex/default.tex", package="rmarkdown"))
  • , , .. , . notitle.tex
  • template: notitle.tex pdf_document.
+3

All Articles