Helper function to insert tex math expressions into R documentation (.rd
) files.
Uses Katex rendering for documentation in html format, and the appropriate latex
macros for documentation rendered in pdf or plain-text.
math_to_rd(tex, ascii = tex, displayMode = TRUE, ..., include_css = TRUE)
input string with tex math expression.
alternate text-only representation of the input math to show in documentation rendered to plain text format.
render math in centered 2D layout, similar to $$
in tex.
Set to FALSE
to render (non-centered) inline layout for use in text.
For pdf output, this corresponds to the \deqn{}
and \eqn{}
macros, see
WRE 2.6: Mathematics
additional html rendering options passed to katex.render
adds the katex css file to the output.
This is only required once per html webpage. Set to FALSE
if you include css
files into the your html head some other way.
a string with an rd fragment to be included in R documentation
Use math_to_rd()
inside \Sexpr
to embed math in your R package documentation
pages. For example the code below can be inserted in your rd
(or roxygen)
source code:
Which results in the following output:
Optionally you can specify an alternate ascii representation that will be shown in the plain-text format rendering of the documentation:
If no ascii representation is given, the input tex in displayed verbatim into the plain-text documentation.
On Windows, R versions before 4.1.2 had a bug
which could lead to incorrect HTML encoding for \Sexpr{}
output.
As a workaround, we automatically escape non-ascii html characters
on these versions of R. Linux and MacOS are unaffected.