Rdo_piecetag {Rdpack} | R Documentation |
Give information about Rd elements.
Rdo_piecetag(name) Rdo_sectype(x) is_Rdsecname(name)
name |
the name of an Rd macro, a string. |
x |
the name of an Rd macro, a string. |
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
.
Georgi N. Boshnakov
Rdo_piece_types
and
Rdo_predefined_sections
Rdo_piecetag("eqn") # ==> "VERB" Rdo_piecetag("code") # ==> "RCODE" Rdo_sectype("usage") # ==> "RCODE" Rdo_sectype("title") # ==> "TEXT" Rdo_sectype("arguments")