powered by
Construct a Rd string type.
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)
Rd_text(content)
Rd_rcode(content)
Rd_verb(content)
Rd_symb(content)
Rd_comment(content)
a string to type as an Rd string type
the type of text is is.
Rd_text: Type as plain text.
Rd_text
Rd_rcode: Type as R Code.
Rd_rcode
Rd_verb: Type as R symbol or 'verb'.
Rd_verb
Rd_symb: Type as R symbol or 'verb'.
Rd_symb
Rd_comment: type as Rd comment. Comments must start with the comment character '
Rd_comment
Other construction: Rd_tag, Rd
Rd_tag
Rd
# NOT RUN { ## 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") # }
Run the code above in your browser using DataLab