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