It is possible add headers to the output of Rmarkdown files. This is not a major issue, but some journals require it so it is good to know how to add to a PDF (or a DOCX, but this could also be done manually), and I need to add this somewhere in the notes (toward the end).
header-includes:
- \usepackage{fancyhdr}
- \pagestyle{fancy}
- \fancyhead[R]{GMSE, AN R PACKAGE}
The above requires the fancyhdr package to be downloaded in LaTeX. An example is the GMSE manuscript YAML header.
It is possible add headers to the output of Rmarkdown files. This is not a major issue, but some journals require it so it is good to know how to add to a PDF (or a DOCX, but this could also be done manually), and I need to add this somewhere in the notes (toward the end).
The above requires the
fancyhdr
package to be downloaded in LaTeX. An example is the GMSE manuscript YAML header.