]> git.donarmstrong.com Git - lilypond.git/blob - input/no-notation/midi-tuplets.ly
Update blank sheet music example again.
[lilypond.git] / input / no-notation / midi-tuplets.ly
1 #(ly:set-option 'old-relative)
2 \version "2.10.0"
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 \score { 
21   \context Voice  \relative c' {
22
23     a1 a2 a2. a4 a4. a8 a8. a16 a16. a32 a32. a64
24
25     \times 2/3 { b4 b4 b4 }
26     \times 3/5 { b4 b4 b4 b4 b4 }
27
28     \times 2/3 { c8 c8 c8 }
29     \times 3/5 { c8 c8 c8 c8 c8 }
30
31   }
32   \layout { }  
33   \midi { }
34 }
35
36