View source: R/sanitizeTexString.R
sanitizeTexString | R Documentation |
This function is used by tikzDevice when sanitize = TRUE
to replace
special LaTeX characters (such as the comment character %) in plotting text
where the user does not have direct control over the generated text.
sanitizeTexString(
string,
strip = getOption("tikzSanitizeCharacters"),
replacement = getOption("tikzReplacementCharacters")
)
string |
A character vector of length 1 (a string). |
strip |
A character vector of single characters to search for. |
replacement |
A character vector of replacement values. |
sanitizeTexString()
searches character by character through a string
replacing each occurrence of a special character contained in
strip[i]
with the corresponding replacement value in
replacement[i]
. tikzDevice calls back this function for every piece
of text when the sanitize option is TRUE. See tikz()
for more
information on the default special characters and replacement values.
By default, tikzSanitizeCharacters
replaces the following characters:
%
$
}
{
^
_
#
&
~
With the contents of tikzReplacementCharacters
:
\%
\$
\}
\{
\^{}
\_{}
\#
\&
\char`\~
These defaults may be adjusted using the options()
function.
sanitizedString |
A character vector of length 1 with all special characters replaced. |
Cameron Bracken cameron.bracken@gmail.com
tikz()
# Be careful with sanitizing, it may lead to unexpected behavior.
# For example, we may want -1 to be a superscript it gets
# sanitized away with the other default special characters.
# The string appears in LaTeX exactly as shown.
## Not run:
sanitizeTexString('10\
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.