LEFT | RIGHT |
1 %%%% This file is part of LilyPond, the GNU music typesetter. | 1 %%%% This file is part of LilyPond, the GNU music typesetter. |
2 %%%% | 2 %%%% |
3 %%%% Copyright (C) 1996--2012 Han-Wen Nienhuys <hanwen@xs4all.nl> | 3 %%%% Copyright (C) 1996--2012 Han-Wen Nienhuys <hanwen@xs4all.nl> |
4 %%%% Jan Nieuwenhuizen <janneke@gnu.org> | 4 %%%% Jan Nieuwenhuizen <janneke@gnu.org> |
5 %%%% | 5 %%%% |
6 %%%% LilyPond is free software: you can redistribute it and/or modify | 6 %%%% LilyPond is free software: you can redistribute it and/or modify |
7 %%%% it under the terms of the GNU General Public License as published by | 7 %%%% it under the terms of the GNU General Public License as published by |
8 %%%% the Free Software Foundation, either version 3 of the License, or | 8 %%%% the Free Software Foundation, either version 3 of the License, or |
9 %%%% (at your option) any later version. | 9 %%%% (at your option) any later version. |
10 %%%% | 10 %%%% |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 \alias Voice | 97 \alias Voice |
98 } | 98 } |
99 | 99 |
100 \context { | 100 \context { |
101 \type "Performer_group" | 101 \type "Performer_group" |
102 \name VaticanaVoice | 102 \name VaticanaVoice |
103 \alias Voice | 103 \alias Voice |
104 \consists "Dynamic_performer" | 104 \consists "Dynamic_performer" |
105 \consists "Tie_performer" | 105 \consists "Tie_performer" |
106 \consists "Note_performer" | 106 \consists "Note_performer" |
| 107 \consists "Beam_performer" |
107 \consists "Slur_performer" | 108 \consists "Slur_performer" |
108 } | 109 } |
109 | 110 |
110 \context { | 111 \context { |
111 \type "Performer_group" | 112 \type "Performer_group" |
112 \name KievanVoice | 113 \name KievanVoice |
113 \alias Voice | 114 \alias Voice |
114 \consists "Dynamic_performer" | 115 \consists "Dynamic_performer" |
115 \consists "Tie_performer" | 116 \consists "Tie_performer" |
116 \consists "Note_performer" | 117 \consists "Note_performer" |
117 \consists "Beam_performer" | 118 \consists "Beam_performer" |
118 \consists "Slur_performer" | 119 \consists "Slur_performer" |
119 } | 120 } |
120 | 121 |
121 \context { | 122 \context { |
122 \type "Performer_group" | 123 \type "Performer_group" |
123 \name MensuralVoice | 124 \name MensuralVoice |
124 \alias Voice | 125 \alias Voice |
125 \consists "Dynamic_performer" | 126 \consists "Dynamic_performer" |
126 \consists "Tie_performer" | 127 \consists "Tie_performer" |
127 \consists "Note_performer" | 128 \consists "Note_performer" |
| 129 \consists "Beam_performer" |
128 \consists "Slur_performer" | 130 \consists "Slur_performer" |
129 } | 131 } |
130 | 132 |
131 \context { | 133 \context { |
132 \Voice | 134 \Voice |
133 \remove "Note_performer" | 135 \remove "Note_performer" |
134 \consists "Drum_note_performer" | 136 \consists "Drum_note_performer" |
135 \name DrumVoice | 137 \name DrumVoice |
136 } | 138 } |
137 | 139 |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 \context { | 290 \context { |
289 \Staff | 291 \Staff |
290 \name RhythmicStaff | 292 \name RhythmicStaff |
291 } | 293 } |
292 | 294 |
293 \context { | 295 \context { |
294 \type "Performer_group" | 296 \type "Performer_group" |
295 \name Dynamics | 297 \name Dynamics |
296 \consists "Piano_pedal_performer" | 298 \consists "Piano_pedal_performer" |
297 } | 299 } |
LEFT | RIGHT |