LEFT | RIGHT |
1 \version "2.16.0" | 1 \version "2.16.0" |
2 | 2 |
3 startGroup = #(make-span-event 'NoteGroupingEvent START) | 3 startGroup = #(make-span-event 'NoteGroupingEvent START) |
4 stopGroup = #(make-span-event 'NoteGroupingEvent STOP) | 4 stopGroup = #(make-span-event 'NoteGroupingEvent STOP) |
5 | 5 |
6 | 6 |
7 cr = #(make-span-event 'CrescendoEvent START) | 7 cr = #(make-span-event 'CrescendoEvent START) |
8 decr = #(make-span-event 'DecrescendoEvent START) | 8 decr = #(make-span-event 'DecrescendoEvent START) |
9 enddecr = #(make-span-event 'DecrescendoEvent STOP) | 9 enddecr = #(make-span-event 'DecrescendoEvent STOP) |
10 endcr = #(make-span-event 'CrescendoEvent STOP)· | 10 endcr = #(make-span-event 'CrescendoEvent STOP)· |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 | 105 |
106 %crescpoco = \set crescendoText = "cresc. poco a poco" | 106 %crescpoco = \set crescendoText = "cresc. poco a poco" |
107 %decresc = \set crescendoText = "decr." | 107 %decresc = \set crescendoText = "decr." |
108 %dim = \set crescendoText = "dim." | 108 %dim = \set crescendoText = "dim." |
109 | 109 |
110 newSpacingSection = #(make-event-chord (list (make-music 'SpacingSectionEvent))) | 110 newSpacingSection = #(make-event-chord (list (make-music 'SpacingSectionEvent))) |
111 | 111 |
112 breakDynamicSpan = #(make-music 'BreakDynamicSpanEvent) | 112 breakDynamicSpan = #(make-music 'BreakDynamicSpanEvent) |
113 | 113 |
114 breakSlur = #(make-music 'BreakSlurEvent) | 114 breakSlur = #(make-music 'BreakSlurEvent) |
115 breakSlurJunkLeft = #(make-music 'BreakSlurEvent 'side-to-junk LEFT) | |
116 breakSlurJunkRight = #(make-music 'BreakSlurEvent 'side-to-junk RIGHT) | |
117 | 115 |
118 breakPhrasingSlur = #(make-music 'BreakPhrasingSlurEvent) | 116 breakPhrasingSlur = #(make-music 'BreakPhrasingSlurEvent) |
119 breakPhrasingSlurJunkLeft = #(make-music 'BreakPhrasingSlurEvent 'side-to-junk L
EFT) | |
120 breakPhrasingSlurJunkRight = #(make-music 'BreakPhrasingSlurEvent 'side-to-junk
RIGHT) | |
121 | 117 |
LEFT | RIGHT |