An easy way to render variation table on typst, built on fletcher
The documention
#import "@preview/Tabvar:0.1.0": tabvar
Turn this :
#import "@preview/Tabvar:0.1.0": tabvar
#tabvar(
init: (
variable: $x$,
label: (
([sign of cos], "Sign"),
([variation of cos], "Variation"),
([sign of sin], "Sign"),
([variation of sin], "Variation"),
),
),
domain: ($0$, $ pi / 2 $, $ pi $, $ (2pi) / 3 $, $ 2 pi $),
content: (
($-$, (), $+$, ()),
(
(top, $1$),
(),
(bottom, $-1$),
(),
(top, $1$),
),
($+$, $-$, (), $+$),
(
(center, $0$),
(top, $1$),
(),
(bottom, $-1$),
(top, $1$),
),
),
)
Into this
#import "@preview/Tabvar:0.1.0": tabvar
#tabvar(
init: (
variable: $x$,
label: (
([sign of $f$], "Sign"),
([variation of $f$], "Variation"),
),
),
domain: ($ -oo $, $ 0 $, $ +oo $),
content: (
($+$, ("||", $+$)),
(
(center, $0$),
(bottom, top, "||", $-oo$, $+oo$),
(center, $0$),
),
),
)
- if you put too wide an element for the last value of a variation table, this can create a space between the edge of the table and the lines separating the lines of the table
- Support
fletcher 0.5.2
- added customisation of separator bars between signs
- publishing the package