]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/midi/quantize-start.ly
[doc] Handle leading dash in @code.
[lilypond.git] / input / regression / midi / quantize-start.ly
1 % Lily was here -- automatically converted by ../../../scripts/midi2ly.py from out-www/voice-2.midi
2 \version "2.14.0"
3
4 \layout {
5   \context {
6     \Voice
7     \remove "Note_heads_engraver"
8     \consists "Completion_heads_engraver"
9     \remove "Rest_engraver"
10     \consists "Completion_rest_engraver"
11   }
12 }
13 \midi {
14   \context {
15     \Score
16     midiChannelMapping = #'instrument
17   }
18 }
19
20 % included from ./out-www/voice-2.header
21 \header {
22 texidoc="@code{midi2ly}'s option @option{--start-quant} quantizes start of notes."
23 options="--start-quant=4"
24 }
25 % end
26
27 trackAchannelA = {
28   
29   % [SEQUENCE_TRACK_NAME] control track
30   
31   % [TEXT_EVENT] creator: 
32   
33   % [TEXT_EVENT] GNU LilyPond 2.13.54          
34   
35   \time 4/4 
36   
37   \tempo 4 = 60 
38   
39 }
40
41 trackA = <<
42   \context Voice = voiceA \trackAchannelA
43 >>
44
45
46 trackBchannelA = \relative c {
47   r4*1/8 c4*7/8 
48   c4*7/8 r4*1/8
49 }
50
51 trackB = <<
52   \context Voice = voiceA \trackBchannelA
53 >>
54
55
56 \score {
57   <<
58     \context Staff=trackB \trackB
59   >>
60   \layout {}
61   \midi {}
62 }