r - How to add whitespace to an RMarkdown document? -
is there way adding latex code in text or solution lie in (r)markdown?
no sign of solution here: http://rmarkdown.rstudio.com/pdf_document_format.html
at present i'm bodging solution adding monospace
signature bottom of 1st page, force next section start on page 2: https://github.com/robinlovelace/creating-maps-in-r/blob/master/intro-spatial-rl.pdf
you can use latex inside rmd file. have page break, add \newpage
.
example.rmd
title ==================== test rmd document. \newpage second page ==================== text on second page
you make pdf using render("example.rmd", output_format='pdf_document')
hope helps,
alex
Comments
Post a Comment