]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/staff-tweak.ly
Issue 5055: HTML 4.01 requires "type" attribute for "script" element
[lilypond.git] / input / regression / staff-tweak.ly
index fcc21b8f442731f8eee387f3ed1c2721fa8e07d0..b614b827bede0dac0a15debd1bc011a90335a797 100644 (file)
@@ -1,30 +1,28 @@
-\version "2.1.7"
+\version "2.19.21"
 
 \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."    
 
 }
 
+\layout  {
+  ragged-right = ##t
+}
+
+
+mus =  \relative { c'4 g' d'8 d d d }
 
-mus = \notes \relative c' { c4 g' d'8 d d d }
 
-\score {
-  \notes <<
-    \new Staff {
-       \property
-       Staff.  StaffSymbol \set #'thickness = #2.0
-       \property
-       Staff.StaffSymbol \set #'line-count = #6
-       \property
-       Staff.StaffSymbol \set #'staff-space = #1.1
-       \mus
-    }
+<<
+  \new Staff {
+    \override Staff.StaffSymbol.thickness = #2.0
+    \override Staff.StaffSymbol.line-count = #6
+    \override Staff.StaffSymbol.staff-space = #1.1
     \mus
-  >>
-  \paper  {
-    raggedright = ##t
   }
-}
+  \mus
+>>
+
+