Complex time signatures: Difference between revisions
Appearance
m New category |
m "Compound" -> "complex"; untag as official documentation in preparation for renaming |
||
| Line 1: | Line 1: | ||
Odd | Odd time signatures (such as “5/8”) can often be played as complex time signatures (e.g. “3/8 + 2/8”), which combine two or more inequal metrics. | ||
LilyPond can make such music quite easy to read and play, by explicitly printing the | LilyPond can make such music quite easy to read and play, by explicitly printing the time signatures and adapting the automatic beaming behavior. | ||
<lilypond version="2.24"> | <lilypond version="2.24"> | ||
| Line 12: | Line 12: | ||
</lilypond> | </lilypond> | ||
<!-- | |||
[[Category:Included in the official documentation]] | |||
This snippet will be renamed because "compound meter" just means 6/8, 9/8, etc. | |||
https://gitlab.com/lilypond/lilypond/-/merge_requests/2850#note_2990509829 | |||
--> | |||
[[Category:Rhythms]] | [[Category:Rhythms]] | ||
[[Category:Snippet]] | [[Category:Snippet]] | ||
Revision as of 12:18, 8 January 2026
Odd time signatures (such as “5/8”) can often be played as complex time signatures (e.g. “3/8 + 2/8”), which combine two or more inequal metrics.
LilyPond can make such music quite easy to read and play, by explicitly printing the time signatures and adapting the automatic beaming behavior.
\version "2.24"
\relative c' {
\compoundMeter #'((2 8) (3 8))
c8 d e fis gis
c8 fis, gis e d
c8 d e4 gis8
}