EVOLUTION-MANAGER
Edit File: rtf_document.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Convert to an RTF document</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for rtf_document {rmarkdown}"><tr><td>rtf_document {rmarkdown}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Convert to an RTF document</h2> <h3>Description</h3> <p>Format for converting from R Markdown to an RTF document. </p> <h3>Usage</h3> <pre> rtf_document( toc = FALSE, toc_depth = 3, fig_width = 5, fig_height = 4, keep_md = FALSE, md_extensions = NULL, pandoc_args = NULL ) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>toc</code></td> <td> <p><code>TRUE</code> to include a table of contents in the output</p> </td></tr> <tr valign="top"><td><code>toc_depth</code></td> <td> <p>Depth of headers to include in table of contents</p> </td></tr> <tr valign="top"><td><code>fig_width</code></td> <td> <p>Default width (in inches) for figures</p> </td></tr> <tr valign="top"><td><code>fig_height</code></td> <td> <p>Default height (in inches) for figures</p> </td></tr> <tr valign="top"><td><code>keep_md</code></td> <td> <p>Keep the markdown file generated by knitting.</p> </td></tr> <tr valign="top"><td><code>md_extensions</code></td> <td> <p>Markdown extensions to be added or removed from the default definition or R Markdown. See the <code><a href="rmarkdown_format.html">rmarkdown_format</a></code> for additional details.</p> </td></tr> <tr valign="top"><td><code>pandoc_args</code></td> <td> <p>Additional command line options to pass to pandoc</p> </td></tr> </table> <h3>Details</h3> <p>See the <a href="https://rmarkdown.rstudio.com/rtf_document_format.html">online documentation</a> for additional details on using the <code>rtf_document</code> format. </p> <p>R Markdown documents can have optional metadata that is used to generate a document header that includes the title, author, and date. For more details see the documentation on R Markdown <a href="rmd_metadata.html">metadata</a>. </p> <p>R Markdown documents also support citations. You can find more information on the markdown syntax for citations in the <a href="https://rmarkdown.rstudio.com/authoring_bibliographies_and_citations.html">Bibliographies and Citations</a> article in the online documentation. </p> <h3>Value</h3> <p>R Markdown output format to pass to <code><a href="render.html">render</a></code> </p> <h3>Examples</h3> <pre> ## Not run: library(rmarkdown) # simple invocation render("input.Rmd", rtf_document()) # specify table of contents option render("input.Rmd", rtf_document(toc = TRUE)) ## End(Not run) </pre> <hr /><div style="text-align: center;">[Package <em>rmarkdown</em> version 2.3 <a href="00Index.html">Index</a>]</div> </body></html>