Big time signatures: Difference between revisions
Created page |
Add categories |
||
| Line 1: | Line 1: | ||
In some modern conducting scores it is common to not print individual time signatures for each staff, but to print large time signatures either over the whole system or over the instrument groups. This code implements such behaviour by | In some modern conducting scores it is common to not print individual time signatures for each staff, but to print large time signatures either over the whole system or over the instrument groups. This code implements such behaviour by | ||
# | # creating a new `BigTimeSignature` spanner grob that spans multiple time signatures and prints an enlarged signature over their extent, and | ||
# | # creating an engraver that collects all time signatures, replacing them with a `BigTimeSignature` spanner on them. | ||
<lilypond version="2.24"> | <lilypond version="2.24"> | ||
| Line 125: | Line 125: | ||
} | } | ||
</lilypond> | </lilypond> | ||
[[Category:Contemporary notation]] | |||
[[Category:Contexts and engravers]] | |||
[[Category:Rhythms]] | |||
[[Category:Scheme]] | |||
[[Category:Staff notation]] | |||