]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/staff-tweak.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / staff-tweak.ly
index 8ef671e52defe087d4b301838b35b0861efd6b62..36e75dba38ee33ab281d4631029dbab241f5e0df 100644 (file)
@@ -1,22 +1,28 @@
-\version "1.7.16"
+\version "2.17.6"
+
 \header {
-texidoc = "The staff is a grob, and may be adjusted as well: this one
- shows a staff with 6 thick line, and a slightly large staffspace.
-Beams remain correctly quantized.
+  texidoc = "The staff is a grob (graphical object) which may be adjusted as well, for example, to have 6 thick lines and a slightly large @code{staff-space}.
+However, beams remain correctly quantized."    
 
-"    
 }
 
-\score { \notes {
-    \property Score.StaffSymbol \set #'thickness = #2.0
-    \property Score.StaffSymbol \set #'line-count = #6
-    \property Score.StaffSymbol \set #'staff-space = #1.1
-    c'4 g'4 b'8  b'8  b'8  b'8  
+\layout  {
+  ragged-right = ##t
 }
-        
-\paper  { raggedright = ##t
 
 
-      } 
-     }
-%% new-chords-done %%
+mus =  \relative c' { c4 g' d'8 d d d }
+
+
+<<
+  \new Staff {
+    \override Staff.StaffSymbol.thickness = #2.0
+    \override Staff.StaffSymbol.line-count = #6
+    \override Staff.StaffSymbol.staff-space = #1.1
+    \mus
+  }
+  \mus
+>>
+
+
+