]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/screech-and-boink.ly
Add '-dcrop' option to ps and svg backends
[lilypond.git] / Documentation / snippets / screech-and-boink.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 = "headword"
11
12   texidoc = "
13 Random complex notation
14
15 "
16   doctitle = "Screech and Boink"
17 } % begin verbatim
18
19 \score {
20   \context PianoStaff <<
21     \new Staff = "up" {
22       \time 4/8
23       \key c \minor
24       <<
25         {
26           \revert Stem.direction
27           \change Staff = down
28           \set subdivideBeams = ##t
29           g16.[
30           \change Staff = up
31           c'''32
32           \change Staff = down
33           g32
34           \change Staff = up
35           c'''32
36           \change Staff = down
37           g16]
38           \change Staff = up
39           \stemUp
40           \set followVoice = ##t
41           c'''32([ b''16 a''16 gis''16 g''32)]
42         }
43         \\
44         { s4 \tuplet 3/2 { d'16[ f' g'] } as'32[ b''32 e'' d''] }
45         \\
46         { s4 \autoBeamOff d''8.. f''32  }
47         \\
48         { s4 es''4 }
49       >>
50     }
51     \new Staff = "down" {
52       \clef bass
53       \key c \minor
54       \set subdivideBeams = ##f
55       \override Stem.french-beaming = ##t
56       \override Beam.beam-thickness = #0.3
57       \override Stem.thickness = #4.0
58       g'16[ b16 fis16 g16]
59       <<
60         \makeClusters {
61           as16 <as b> <g b> <g cis>
62         }
63         \\
64         {
65           \override Staff.Arpeggio.arpeggio-direction = #DOWN
66           <cis, e, gis, b, cis>4\arpeggio
67         }
68       >>
69     }
70   >>
71   \midi {
72     \tempo 8 = 60
73   }
74   \layout {
75     ragged-right = ##t
76     \context {
77       \Staff
78       \consists "Horizontal_bracket_engraver"
79     }
80   }
81 }