pdf_documentC {patchDVI} | R Documentation |
R Markdown driver to add concordance
Description
This drivers replace the like-named rmarkdown driver with one that outputs Commonmark rather than Pandoc Markdown. Commonmark is a dialect of Markdown for which the Pandoc driver for Commonmark supports output of source position information. By using this function as your output driver, you can get that in your own documents.
Usage
pdf_documentC(latex_engine = "pdflatex",
sourcepos = TRUE,
defineSconcordance = TRUE,
run_latex = TRUE, ...)
Arguments
latex_engine |
Command to convert ‘.tex’ file to ‘.pdf’. |
sourcepos |
Whether to include source position information. |
defineSconcordance |
If |
run_latex |
Whether to run the |
... |
Other arguments to pass to the base driver. |
Details
This driver modifies the standard rmarkdown driver pdf_document
, but uses Commonmark
and adds concordances.
Value
An R Markdown output format object which will add concordance information.
Author(s)
Duncan Murdoch