Rd_string_creation: Rd String Construction

Description Usage Arguments Functions See Also Examples

Description

Construct a Rd string type.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
Rd_string(content, type = c("TEXT", "RCODE", "VERB", "COMMENT",
  "UNKNOWN", "LIST"))

Rd_text(content)

Rd_rcode(content)

Rd_verb(content)

Rd_symb(content)

Rd_comment(content)

Arguments

content

a string to type as an Rd string type

type

the type of text is is.

Functions

See Also

Other construction: Rd_tag, Rd

Examples

1
2
3
4
5
6
7
8
9
## Plain text
Rd_text("Plain text")
## R Code
Rd_rcode("code()")
## Symbols, i.e. verbs
Rd_verb("verb")
Rd_symb("symbol")
## Rd Comments
Rd_comment("% Rd/LaTeX comment")

Rd documentation built on May 23, 2019, 9:03 a.m.