]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/screech-boink.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / screech-boink.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.13.36
8 \version "2.14.0"
9 \header {
10   lsrtags = "headwords"
11   texidoc = "Random complex notation"
12   doctitle = "Screech and Boink"
13 } % begin verbatim
14
15
16 \score {
17   \context PianoStaff <<
18     \new Staff = "up" {
19       \time 4/8
20       \key c \minor
21       <<
22         {
23           \revert Stem #'direction
24           \change Staff = down
25           \set subdivideBeams = ##t
26           g16.[
27           \change Staff = up
28           c'''32
29           \change Staff = down
30           g32
31           \change Staff = up
32           c'''32
33           \change Staff = down
34           g16]
35           \change Staff = up
36           \stemUp
37           \set followVoice = ##t
38           c'''32([ b''16 a''16 gis''16 g''32)]
39         }
40         \\
41         { s4 \times 2/3 { d'16[ f' g'] } as'32[ b''32 e'' d''] }
42         \\
43         { s4 \autoBeamOff d''8.. f''32  }
44         \\
45         { s4 es''4 }
46       >>
47     }
48     \new Staff = "down" {
49       \clef bass
50       \key c \minor
51       \set subdivideBeams = ##f
52       \override Stem #'french-beaming = ##t
53       \override Beam #'beam-thickness = #0.3
54       \override Stem #'thickness = #4.0
55       g'16[ b16 fis16 g16]
56       <<
57         \makeClusters {
58           as16 <as b> <g b> <g cis>
59         }
60         \\
61         {
62           \override Staff.Arpeggio #'arpeggio-direction = #DOWN
63           <cis, e, gis, b, cis>4\arpeggio
64         }
65       >>
66     }
67   >>
68   \midi {
69     \context {
70       \Score
71       tempoWholesPerMinute = #(ly:make-moment 60 8)
72     }
73   }
74   \layout {
75     ragged-right = ##t
76     \context {
77       \Staff
78       \consists "Horizontal_bracket_engraver"
79     }
80   }
81 }