]> git.donarmstrong.com Git - lilypond.git/blob - input/no-notation/midi-transposing.ly
* input/test/spanner-after-break-tweak.ly: import
[lilypond.git] / input / no-notation / midi-transposing.ly
1 \version "1.7.18"
2
3 \header { texidoc = "@cindex Transposing
4 The transposing property leaves output invariant, but has effect on MIDI. "
5 }
6
7 \score { 
8   \context Voice \notes\relative c {
9     % btw: this is not how transposing is done in lilypond
10         % this is a transposing performer, i.e. for midi-output only
11         \property Staff.transposing = #0 c
12         \property Staff.transposing = #2 c
13         \property Staff.transposing = #4 c
14         \property Staff.transposing = #5 c
15         \property Staff.transposing = #7 c
16         \property Staff.transposing = #9 c
17         \property Staff.transposing = #11 c
18         \property Staff.transposing = #12 c
19         
20   }
21   \paper { raggedright = ##t } 
22   \midi { }
23 }
24