View source: R/deprecated_defunct.R
render_appendix | R Documentation |
This function renders an R Markdown document without YAML header to a TeX
fragment inside an appendix
environment, or to a markdown fragment (for
Word output). This function has been defunct. Please use the appendix
syntax provided by bookdown (see the bookdown manual).
render_appendix(
x,
bibliography = rmarkdown::metadata$bibliography,
csl = rmarkdown::metadata$csl,
quiet = TRUE,
...
)
x |
Character. Path to R Markdown file. |
bibliography |
Character. Paths to relevant bibliography file(s). |
csl |
Character. Path to CSL file to use. Defaults to APA-style. |
quiet |
Logical. Suppresses pandoc command line output; see |
... |
Arguments passed on to
|
This function is only exported for backwards compatibility.
It is now recommended not to call render_appendix()
directly.
Instead, to add appendices to your manuscript, add the R Markdown file
to the YAML front matter by using appendix: "appendix.Rmd"
.
Default chunk options and hooks are set to those used in the R Markdown
document from which render_appendix
is called; otherwise defaults of
md_document
are used.
By default, x
is converted to a TeX file, which can be included in an
R Markdown document as include
:
output: pdf_document: include: after_body: appendix.tex
If render_appendix
is called form an R Markdown document with a
target document type other than a PDF file, a markdown fragment is
included.
Returns NULL
invisibly.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.