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