]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/compound-time-signatures.ly
693ed0046996bd56acb86f3409fcb6eeae8d5e6d
[lilypond.git] / Documentation / snippets / new / compound-time-signatures.ly
1 \version "2.17.15"
2
3 \header {
4   lsrtags = "rhythms"
5
6   texidoc = "
7 Odd 20th century time signatures (such as \\\"5/8\\\") can often be
8 played as compound time signatures (e.g. \\\"3/8 + 2/8\\\"), which
9 combine two or more inequal metrics. LilyPond can make such music quite
10 easy to read and play, by explicitly printing the compound time
11 signatures and adapting the automatic beaming behavior.
12
13 "
14   doctitle = "Compound time signatures"
15 }
16
17 \relative c' {
18   \compoundMeter #'((2 8) (3 8))
19   c8 d e fis gis
20   c8 fis, gis e d
21   c8 d e4 gis8
22 }