added manual

This commit is contained in:
2024-10-02 18:33:21 +02:00
parent 6f563750fb
commit 522cd1537a
10 changed files with 531 additions and 0 deletions

19
docs/groups.typ Normal file
View File

@ -0,0 +1,19 @@
/// Creates a group of sequences
/// #examples.grp
/// - name (content): The group's name
/// - desc (none, content): Optional description
/// - type (str): The groups's type (unused for the moment)
/// - elmts (array): Elements inside the group (can be sequences, other groups, notes, etc.)
#let _grp(
name,
desc: none,
type: "default",
elmts
) = {}
/// Synchronizes multiple sequences
/// #examples.sync
/// - elmts (array): Synchronized elements (generally sequences or notes)
#let _sync(
elmts
)