Rdo_piecetag {Rdpack} | R Documentation |
Give information about Rd elements
Description
Give information about Rd elements.
Usage
Rdo_piecetag(name)
Rdo_sectype(x)
is_Rdsecname(name)
Arguments
name |
the name of an Rd macro, a string. |
x |
the name of an Rd macro, a string. |
Details
Rdo_piecetag
gives the "Rd_tag" of the Rd macro name
.
Rdo_sectype
gives the "Rd_tag" of the Rd section x
.
is_Rdsecname(name)
returns TRUE if name
is the name of a
top level Rd section.
The information returned by these functions is obtained from the
charater vectors Rdo_piece_types
and
Rdo_predefined_sections
.
Author(s)
Georgi N. Boshnakov
See Also
Rdo_piece_types
and
Rdo_predefined_sections
Examples
Rdo_piecetag("eqn") # ==> "VERB"
Rdo_piecetag("code") # ==> "RCODE"
Rdo_sectype("usage") # ==> "RCODE"
Rdo_sectype("title") # ==> "TEXT"
Rdo_sectype("arguments")
[Package Rdpack version 2.6 Index]