Remove/Replace/Extract LaTeX Citations

Usage

rm_citation_tex(text.var, trim = !extract, clean = TRUE, pattern = "@rm_citation_tex", replacement = "", extract = FALSE, split = extract, unlist.extract = TRUE, dictionary = getOption("regex.library"), ...)

Arguments

text.var
The text variable.
trim
logical. If TRUE removes leading and trailing white spaces.
clean
trim logical. If TRUE extra white spaces and escaped character will be removed.
pattern
A character string containing a regular expression (or character string).
replacement
Replacement for matched pattern.
extract
logical. If TRUE the dates are extracted into a list of vectors.
split
logical. If TRUE and extract = TRUE the bibkey will be removed from the LaTeX citation code curly braces and split on commas.
unlist.extract
logical. If TRUE the splits from between LaTeX citation code curly braces will be unlisted. if FALSE the list structure (1 per citation code curly brace) will be retained.
dictionary
A dictionary of canned regular expressions to search within if pattern begins with "@rm_".
...
Additional arguments passed to rm_default.

Value

Returns a character string with citations (bibkeys) removed.

Description

Remove/replace/extract LaTeX citations from a string.

Examples

x <- c( "I say \\parencite*{Ted2005, Moe1999} go there in \\textcite{Few2010} said to.", "But then \\authorcite{Ware2013} said it was so \\pcite[see][p. 22]{Get9999c}.", "then I \\citep[p. 22]{Foo1882c} him") rm_citation_tex(x)
[1] "I say go there in said to." "But then said it was so ." "then I him"
rm_citation_tex(x, replacement="[[CITATION]]")
[1] "I say [[CITATION]] go there in [[CITATION]] said to." "But then [[CITATION]] said it was so [[CITATION]]." [3] "then I [[CITATION]] him"
rm_citation_tex(x, extract=TRUE)
[[1]] [1] "Ted2005" "Moe1999" "Few2010" [[2]] [1] "Ware2013" "Get9999c" [[3]] [1] "Foo1882c"