]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/instrument-name-grandstaff.ly
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / input / test / instrument-name-grandstaff.ly
index 58358b1c65d01d3dedd35334c0b87fe7a300ad15..e875d99ae62af6d69a2ee8d06747bd7fbf0e8fd9 100644 (file)
@@ -1,21 +1,19 @@
-\version "1.9.1"
+\version "2.7.39"
 \header { texidoc = "@cindex Instrument Name Grandstaff
-You can name the whole grandstaff in addition to individual staffs. " }
+You can have a name for the whole @code{GrandStaff} in addition to 
+individual @code{Staff}s. " }
 
 \score {
-  \notes
-  \notes \context GrandStaff <
-    \context Staff = treble    {
-      \property GrandStaff.instrument = "Violini  "
-      \property Staff.instrument = " vn I" { c''4 }}
-    \context Staff = bass { \property Staff.instrument = " vn II" c''4 }>
+  
+   \new GrandStaff <<
+    \new Staff =  "treble"    {
+      \set GrandStaff.instrument = "Violini  "
+      \set Staff.instrument = " vn I" { c''4 }}
+    \new Staff =  "bass" { \set Staff.instrument = " vn II" c''4 }>>
 
 
-\paper {
-raggedright = ##t
-\translator { \StaffContext
-  \consists "Instrument_name_engraver"
-  }
-\translator { \GrandStaffContext \consists "Instrument_name_engraver" }
+\layout {
+ragged-right = ##t
+\context { \GrandStaff \consists "Instrument_name_engraver" }
 }}