]> git.donarmstrong.com Git - lilypond.git/blob - input/test/staff-size.ly
LSR: adding new files.
[lilypond.git] / input / test / staff-size.ly
1 \version "2.10.0"
2
3 \header { texidoc = "@cindex Staff Size
4
5 In order to change staff sizes, both @code{staff-space} and @code{fontSize}
6 must be scaled."
7
8 }
9
10 \layout { ragged-right = ##t}
11
12 \relative c' <<
13 %    \new Staff \relative c'' { \dynamicDown c4 \ff c c c }
14     \new Staff \with {
15         fontSize = #-3
16         \override StaffSymbol #'staff-space = #(magstep -3)
17     } {
18         \clef bass
19         c8 c c c  c c c c
20     }
21 >>
22
23