]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/changing-the-staff-size.ly
LSR: Update.
[lilypond.git] / input / lsr / changing-the-staff-size.ly
index de5478414d4ef08390b4040e8ce95cd75d058628..b4ed717b42d4e2db890160777b252ee340704e22 100644 (file)
@@ -1,24 +1,33 @@
 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-%% Tags: staff-notation, tweaks-and-overrides, paper-and-layout
-\version "2.11.35"
+\version "2.12.3"
 
-\header { texidoc = "
-In order to change staff sizes, both @code{staff-space} and
-@code{fontSize} must be scaled. 
-" }
-% begin verbatim
-{
-    \new Staff \relative c'' { \dynamicDown c8 \ff c c c c c c c } 
-}
+\header {
+  lsrtags = "staff-notation, tweaks-and-overrides, paper-and-layout"
 
-{
-    \new Staff \with {
-       fontSize = #-3
-       \override StaffSymbol #'staff-space = #(magstep -3)
-    } {
-       \clef bass
-       c8 c c c  c c c c
+  texidoc = "
+Though the simplest way to resize staves is to use
+@code{#(set-global-staff-size xx)}, an individual staff's size can be
+changed by scaling the properties @code{'staff-space} and
+@code{fontSize}. 
+
+"
+  doctitle = "Changing the staff size"
+} % begin verbatim
+
+<<
+  \new Staff {
+    \relative c'' {
+      \dynamicDown
+      c8\ff c c c c c c c
     }
-}
+  }
+  \new Staff \with {
+    fontSize = #-3
+    \override StaffSymbol #'staff-space = #(magstep -3)
+  } {
+    \clef bass
+    c8 c c c c\f c c c
+  }
+>>