mkdTitle {easyreporting} | R Documentation |
Inserts an rmarkdown title inside the report, useful for create distinct sections inside the final resport.
mkdTitle(object, title, level = 1)
object |
an easyreporting class object |
title |
a string within the title. |
level |
a numeric from 1 to 6 (default is 1). |
none
rd <- easyreporting(filenamePath="./project_report", title="example_report", author=c("It's me")) mkdTitle(rd, "First Level Title") mkdTitle(rd, "Sub-Title", level=2)