R.rsp (version 0.5.3)

rsp: Compiles an RSP document

Description

Compiles an RSP document.

Usage

## S3 method for class 'default':
rsp(filename=NULL, path=NULL, text=NULL, response=NULL, ..., postprocess=TRUE, verbose=FALSE)

Arguments

filename, path
The filename and (optional) path of the RSP document to be compiled.
text
A character vector of RSP code to be processed, iff argument filename is not given.
response
Specifies where the final output should be sent. If argument text is given, then stdout() is used. Otherwise, the output defaults to that of the type-specific compiler.
...
Additional arguments passed to the type-specific compiler.
postprocess
If TRUE, and a postprocessing method exists for the generated document type, it is postprocessed as well.
verbose
See Verbose.

Value

  • Returns what the type-specific compiler returns.

Postprocessing

For some document types, the rsp() method automatically postprocesses the generated document as well.

Examples

Run this code
# EXAMPLE #1
rsp(text="A random number in [1,100]: <%=sample(1:100, size=1)%>
")

# EXAMPLE #2
path <- system.file("doc", package="R.rsp")
pathname <- rsp("report.tex.rsp", path=path)
printf("Created document: %s
", pathname)

Run the code above in your browser using DataCamp Workspace