Skip to contents

The funtion_name equation for use in plain texts

Usage

typeset_eq_choose()

Value

A character string containing a mathematical formula

Examples

typeset_eq_choose
#> function (inline = FALSE) 
#> {
#>     if (inline) {
#>         "$n!\\(r!*(n-r)!)$"
#>     }
#>     else {
#>         cat("$n!\\(r!*(n-r)!)$")
#>     }
#> }
#> <bytecode: 0x5607c0bb7de0>
#> <environment: namespace:ma206equations>