]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/staff-size.ly
LSR: adding new files.
[lilypond.git] / input / test / staff-size.ly
index 486ead240b6ca34003f105f5483f941f108a105e..6abe3d17d895ae4b58a815e827a1f7aaf6107b32 100644 (file)
@@ -1,17 +1,23 @@
-\score {
-  \notes \relative c' < \context Voice {
-       \property Staff.staffSpace = #10
-       \property Staff.fontSize = #-1
-       \property Voice.fontSize = #-1
-       
-       \property Voice . dynamicDirection = \up \stemDown
-%\key gis \major;
-       c8 d [e f g a] b c \ff
-  }
+\version "2.10.0"
 
-\context Staff = VB {  \property Voice . dynamicDirection = \down c,,4 \ff c c c  }
+\header { texidoc = "@cindex Staff Size
+
+In order to change staff sizes, both @code{staff-space} and @code{fontSize}
+must be scaled."
 
->
-\paper { linewidth = -1.; }
 }
-\version "1.3.93"; 
+
+\layout { ragged-right = ##t}
+
+\relative c' <<
+%    \new Staff \relative c'' { \dynamicDown c4 \ff c c c }
+    \new Staff \with {
+       fontSize = #-3
+       \override StaffSymbol #'staff-space = #(magstep -3)
+    } {
+       \clef bass
+       c8 c c c  c c c c
+    }
+>>
+
+