Skip to contents

The funtion_name equation for use in plain texts

Usage

typeset_eq_binomial()

Value

A character string containing a mathematical formula

Examples

typeset_eq_binomial
#> function (inline = FALSE) 
#> {
#>     if (inline) {
#>         "${{_N}C{_k}} \\cdot p^kq^{N-k}$"
#>     }
#>     else {
#>         cat("${{_N}C{_k}} \\cdot p^kq^{N-k}$")
#>     }
#> }
#> <bytecode: 0x5607bf2fbdd8>
#> <environment: namespace:ma206equations>