]> git.donarmstrong.com Git - lilypond.git/blob - input/test/volta.ly
5ff5265dd5139ffa257771eab56cb16e6724bdf4
[lilypond.git] / input / test / volta.ly
1
2
3
4
5 voiceE =  \notes {
6 \clef bass;
7  \property Staff.instrument = "Bass"
8  \property Staff.instr = "B"
9 % \property Staff.VoltaBracket = \turnOff
10
11  \time 4/4;  f,2 (   ) f,8    r8   f8    e8    
12 \repeat  volta 2
13 {
14  d8.    d16    e8.    f16    f8    c8    c16    c8. 
15 }
16 \alternative
17 {
18     {   f,2 (   ) f,8    r8   f8    e8 ( \break   }
19     {   ) f,2.    r8   c16    c16      |
20     }
21 }
22 }
23 voicedefault =  \notes {
24  
25  \time 4/4; \key f \major ; 
26  \tempo 4 = 200;
27 }
28 \score{
29         \notes <
30
31
32         \context Staff="4"
33         {
34             \voicedefault
35             \voiceE 
36         }
37
38     >
39         \paper {
40             font_normal = 12.;
41             \translator {
42                  \StaffContext
43                  TimeSignature \override   #'style = #'C
44                  \consists Instrument_name_engraver;
45             }
46         }
47 }
48