]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.52
authorfred <fred>
Tue, 16 May 2000 15:29:54 +0000 (15:29 +0000)
committerfred <fred>
Tue, 16 May 2000 15:29:54 +0000 (15:29 +0000)
input/bugs/volta-instrument-name.ly [new file with mode: 0644]

diff --git a/input/bugs/volta-instrument-name.ly b/input/bugs/volta-instrument-name.ly
new file mode 100644 (file)
index 0000000..2bdcfa2
--- /dev/null
@@ -0,0 +1,41 @@
+
+voice4 = \notes {
+\clef bass;
+ \property Staff.instrument = "Bass"
+ \property Staff.instr = "B"
+ \time 4/4;  f,2 (   ) f,8    r8   f8    e8    
+\repeat  volta 2
+{
+ d8.    d16    e8.    f16    f8    c8    c16    c8.    
+}
+\alternative
+{
+    {  f,2 (   ) f,8    r8   f8    e8 \break   }
+    {   f,2.    r8   c16    c16      |
+    }
+}
+}
+voicedefault = \notes {
+ \property Staff.timeSignatureStyle="C"
+ \time 4/4; \key f; 
+ \tempo 4 = 200;
+}
+\score{
+        \notes <
+
+
+       \context Staff="4"
+       {
+           \$voicedefault
+           \$voice4 
+       }
+
+    >
+       \paper {
+           font_normal = 12.;
+           \translator {
+                \StaffContext 
+                \consists Instrument_name_engraver;
+           }
+       }
+}