The following is the default way to create a title in R markdown.
title: "Title"
author: "Author"
date: "19/02/2020"
output: pdf_document
The problem is that the 3 lines (title, author, date) occupy too much space. I would like to know a way to reduce the font size of all 3 lines, reduce the margin between the lines, and shift the lines a bit higher up the page. Thanks.