chronos/docs/gaps_seps.typ

15 lines
494 B
Plaintext
Raw Permalink Normal View History

2024-10-02 16:33:21 +00:00
/// Creates a separator before the next element
2024-11-09 16:57:53 +00:00
/// #examples.seps
2024-10-02 16:33:21 +00:00
/// - name (content): Name to display in the middle of the separator
2024-11-09 16:57:53 +00:00
#let _sep(name) = {}
/// Creates a delay before the next element
/// #examples.delays
/// - name (content, none): Name to display in the middle of the delay area
/// - size (int): Size of the delay
#let _delay(name: none, size: 30) = {}
/// Creates a gap before the next element
/// #examples.gaps
/// - size (int): Size of the gap
#let _gap(size: 20) = {}