Skip to contents

The funtion_name equation for use in plain texts

Usage

typeset_eq_normal()

Value

A character string containing a mathematical formula

Examples

typeset_eq_normal
#> function (inline = FALSE) 
#> {
#>     if (inline) {
#>         "$p(x) = \\frac{1}{\\sqrt{ 2 \\pi \\sigma^2 }} e^{ - \\frac{ (x - \\mu)^2 } {2 \\sigma^2} }$"
#>     }
#>     else {
#>         cat("$p(x) = \\frac{1}{\\sqrt{ 2 \\pi \\sigma^2 }} e^{ - \\frac{ (x - \\mu)^2 } {2 \\sigma^2} }$")
#>     }
#> }
#> <bytecode: 0x5607c07c09e0>
#> <environment: namespace:ma206equations>