]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/heavily-customized-polymetric-time-signatures.ly
53d7f2120e23736f8c8ca8b677c03e0a287306ee
[lilypond.git] / Documentation / snippets / heavily-customized-polymetric-time-signatures.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.18.0"
8
9 \header {
10   lsrtags = "contemporary-notation, percussion, real-music, rhythms"
11
12   texidoc = "
13 Though the polymetric time signature shown was not the most essential
14 item here, it has been included to show the beat of this piece (which
15 is the template of a real Balkan song!).
16
17 "
18   doctitle = "Heavily customized polymetric time signatures"
19 } % begin verbatim
20
21 melody = \relative c'' {
22   \set Staff.instrumentName = #"Bb Sop."
23   \key g \major
24   \compoundMeter #'((3 8) (2 8) (2 8) (3 8) (2 8) (2 8)
25                     (2 8) (2 8) (3 8) (2 8) (2 8))
26   c8 c c d4 c8 c b c b a4 g fis8 e d c b' c d e4-^ fis8 g \break
27   c,4. d4 c4 d4. c4 d c2 d4. e4-^ d4
28   c4. d4 c4 d4. c4 d c2 d4. e4-^ d4 \break
29   c4. d4 c4 d4. c4 d c2 d4. e4-^ d4
30   c4. d4 c4 d4. c4 d c2 d4. e4-^ d4 \break
31 }
32
33 drum = \new DrumStaff \drummode {
34   \bar ".|:" bd4.^\markup { Drums } sn4 bd \bar ";" sn4.
35   bd4 sn \bar ";" bd sn bd4. sn4 bd \bar ":|."
36 }
37
38 {
39   \melody
40   \drum
41 }