Nothing
Sum <- function(f, from = lsymb(""), to = lsymb("")) {
lsymb("\\sum") |>
under(from) |>
(\(x) x^to)() |>
(\(x) x * f)()
}
Prod <- function(f, from = lsymb(""), to = lsymb("")) {
lsymb("\\prod") |>
under(from) |>
(\(x) x^to)() |>
(\(x) x * f)()
}
Int <- function(f, meas = lsymb("dx"), from = lsymb(""), to = lsymb("")) {
lsymb("\\int") |>
under(from) |>
(\(x) x^to)() |>
(\(x) x * f)() |>
(\(x) x * "\\," * meas)()
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.