]> git.donarmstrong.com Git - lilypond.git/blob - input/test/midi-tuplets.ly
update syntax in .ly files.
[lilypond.git] / input / test / midi-tuplets.ly
1 \version "1.7.6"
2
3 \header {
4 texidoc = "
5
6 Midi2ly tuplet test.
7
8 @example
9   python scripts/midi2ly.py --duration-quant=32 \
10       --allow-tuplet=4*2/3 \
11       --allow-tuplet=8*2/3 \
12       --allow-tuplet=4*3/5 \
13       --allow-tuplet=8*3/5 \
14       tu.midi 
15 @end example
16 "
17
18 }
19
20
21 \score { 
22   \context Voice \notes {
23
24     a1 a2 a2. a4 a4. a8 a8. a16 a16. a32 a32. a64
25
26     \times 2/3 { b4 b4 b4 }
27     \times 3/5 { b4 b4 b4 b4 b4 }
28
29     \times 2/3 { c8 c8 c8 }
30     \times 3/5 { c8 c8 c8 c8 c8 }
31
32   }
33   \paper { }  
34   \midi { }
35 }
36 %% new-chords-done %%