Skip to contents

The funtion_name equation for use in plain texts

Usage

typeset_eq_ci()

Value

A character string containing a mathematical formula

Examples

typeset_eq_ci
#> function (inline = FALSE) 
#> {
#>     if (inline) {
#>         "$se=\\sqrt{\\frac{\\hat{p}(1-\\hat{p})}{n}}$ "
#>     }
#>     else {
#>         cat("$se=\\sqrt{\\frac{\\hat{p}(1-\\hat{p})}{n}}$ ")
#>     }
#> }
#> <bytecode: 0x5607b7493ff0>
#> <environment: namespace:ma206equations>