1

I have a code like this in rmarkdown:

---
title: "title"
author: "author"
output: pdf_document
---

How can i add a empty line between the title and author? In default output the author's name is very close to title's name. I think that solution is simple, but i can't see it.

Thanks in advance!

tales_alencar
  • 141
  • 1
  • 10

1 Answers1

2

Following this comment, you can add multiple lines to the title or the author using the | symbol.

---
title: "title"
author: |
   | 
   | author
output: pdf_document
---
filups21
  • 1,611
  • 1
  • 19
  • 22