I\'m writing a document in R Markdown and I\'d like it to include a footer on every page when I knit a PDF document. Does anyone have any idea on how to do this?
To manage the height of the footer, you can use the following:
date: '`r paste("Date:",Sys.Date())`' output: pdf_document: latex_engine: xelatex header-includes: - \setlength{\footskip}{-50pt} # set the footer size
Keep Coding!