updated manual

This commit is contained in:
2024-11-09 17:57:53 +01:00
parent df3a2ddf68
commit e8d737ff00
5 changed files with 89 additions and 21 deletions

View File

@ -1,8 +1,15 @@
/// Creates a gap before the next element
/// - size (int): Size of the gap
#let _gap(size: 20) = {}
/// Creates a separator before the next element
/// #examples.gaps-seps
/// #examples.seps
/// - name (content): Name to display in the middle of the separator
#let _sep(name) = {}
#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) = {}