]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/instrument-name.ly
Merge commit 'origin' into includes
[lilypond.git] / input / regression / instrument-name.ly
index 9d8920b147fe236728791040d1e367d963f4197c..121dd420878248034059a6a4659e0daaeb804111 100644 (file)
@@ -1,25 +1,36 @@
-\version "2.1.22"
+\version "2.12.0"
 \header{
-texidoc="
+  texidoc="
 Staff margins are also markings attached to barlines.  They should be
-left of the staff, and be centered vertically wrt the staff.  They may
-be on normal staves, but also on compound staves, like the PianoStaff.
+left of the staff, and be centered vertically with respect to the staff.  
+They may be on normal staves, but also on compound staves, like the 
+PianoStaff.
 "
 }
 
-       
+\layout {
+  ragged-right = ##t
+}
+
 
 
-\score {
 
-  \notes \context PianoStaff <<
-    \context Staff = treble    {
-      \set PianoStaff.instrument = "Piano "
-      \set Staff.instrument = "Right " { c''4 }}
-    \context Staff = bass { \set Staff.instrument = "Left " \clef bass c4 }>>
 
-\paper {
-raggedright = ##t
-}}
 
+\new StaffGroup <<
+  \context PianoStaff <<
+    \new Staff    {
+      \set PianoStaff.instrumentName = "Piano"
+      \set Staff.instrumentName = "Right" { c''4 }}
+    \new Staff {
+      \set Staff.instrumentName = "Left"
+      \clef bass c4
+    }
+  >>
 
+  \lyrics {
+    \set vocalName = "bert"
+    blah
+  }
+  \new Staff { c''4 } 
+>>