RweaveReST | R Documentation |
A driver to parse sphinx noweb files with Sweave tool This driver parses sphinx files containing R code and replace pieces of code with their output.
RweaveReSTSetup
weaverReSTSetup
weaverReST
RweaveReST()
RweaveReSTSetup(
file,
syntax,
output = NULL,
quiet = FALSE,
debug = FALSE,
extension = "rst",
backend = "docutils, sphinx, ...",
openSchunk = "\n.. code-block:: r\n",
closeSchunk = "\n\n",
openSinput = "",
closeSinput = "",
openSoutput = "\n\n",
closeSoutput = "\n",
indent = " ",
openInclude = ".. include::",
closeInclude = ".rst",
openFig = ".. figure:: ",
closeFig = "",
...
)
weaverReSTSetup(
file,
syntax,
output = NULL,
quiet = FALSE,
debug = FALSE,
extension = "rst",
backend = "docutils, sphinx, ...",
openSchunk = "\n.. code-block:: r\n",
closeSchunk = "\n\n",
openSinput = "",
closeSinput = "",
openSoutput = "\n\n",
closeSoutput = "\n",
indent = " ",
openInclude = ".. include::",
closeInclude = ".rst",
openFig = ".. figure:: ",
closeFig = "",
use.cache = TRUE,
...
)
weaverReST()
file |
file |
syntax |
syntax |
output |
output |
quiet |
quite |
debug |
debug |
... |
... |
use.cache |
use.cache |
None value is returned. From a .Rnw noweb file, the corresponding .rst is produced (as eventuals files for graphs).
In order to work properly, noweb codes have to be located at the beginning of a line (no indentation).
Compare with RweaveLatex driver, RweaveReST provides one new option :
format
to choose the format of figure that will be inserted in the
final document.
In addition, cache
option from weaver
package is also available with weaverReST
driver.
A wrapper for Sweave
can be used, named ReST
.
David Hajage dhajage@gmail.com
Sweave
, ReST
## Not run:
ReST("file.Rnw")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.