insert_citeOnly {Rdpack} | R Documentation |
Generate citations from bibtex keys.
insert_citeOnly(keys, package = NULL, before = NULL, after = NULL, bibpunct = NULL, ..., cached_env = NULL, cite_only = FALSE, dont_cite = FALSE)
keys |
a character string containing bibtex key(s) prefixed with the symbol
|
package |
name of an R package. |
before |
see |
after |
see |
bibpunct |
see |
... |
further arguments; for internal use. |
cached_env |
for internal use. |
cite_only |
for internal use. |
dont_cite |
for internal use. |
This is the function behind \insertCite
and related macros.
Argument "keys"
has the syntax of the first argument of
\insertCite
.
a character vector containing the references with Rd markup
Georgi N. Boshnakov
insert_ref
for description of all available Rd macros
insert_citeOnly("@see also @Rpackage:rbibutils and @parseRd", package = "Rdpack") ## (see also Boshnakov and Putman 2020 and Murdoch 2010) insert_citeOnly("@see also @Rpackage:rbibutils and @parseRd;nobrackets", package = "Rdpack") ## see also Boshnakov and Putman 2020 and Murdoch 2010 insert_citeOnly("@see also @Rpackage:rbibutils and @parseRd;textual", package = "Rdpack") ## see also Boshnakov and Putman (2020) and Murdoch (2010)