]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-the-staff-size.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / changing-the-staff-size.ly
index f7c4d3dd78259c01e4510df336998c9f345d7999..ed30920b49eed08d4dd1aa7acc261f48e01bdcc6 100644 (file)
@@ -4,14 +4,14 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.0"
+\version "2.17.6"
 
 \header {
-  lsrtags = "staff-notation, tweaks-and-overrides, paper-and-layout"
+  lsrtags = "paper-and-layout, staff-notation, tweaks-and-overrides"
 
   texidoc = "
 Though the simplest way to resize staves is to use
-@code{#(set-global-staff-size @var{xx})}, an individual staff's size can be
+@code{#(set-global-staff-size xx)}, an individual staff's size can be
 changed by scaling the properties @code{'staff-space} and
 @code{fontSize}.
 
@@ -19,6 +19,7 @@ changed by scaling the properties @code{'staff-space} and
   doctitle = "Changing the staff size"
 } % begin verbatim
 
+
 <<
   \new Staff {
     \relative c'' {
@@ -28,10 +29,9 @@ changed by scaling the properties @code{'staff-space} and
   }
   \new Staff \with {
     fontSize = #-3
-    \override StaffSymbol #'staff-space = #(magstep -3)
+    \override StaffSymbol.staff-space = #(magstep -3)
   } {
     \clef bass
     c8 c c c c\f c c c
   }
 >>
-