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