]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/staff/changing-the-staff-size.ly
Trevor's latest update to fundamental.
[lilypond.git] / input / lsr / staff / changing-the-staff-size.ly
1 %%  Do not edit this file; it is auto-generated from LSR!
2 \version "2.11.23"
3
4 \header { texidoc = "
5 In order to change staff sizes, both @code{staff-space} and
6 @code{fontSize} must be scaled. 
7 " }
8
9 {
10     \new Staff \relative c'' { \dynamicDown c8 \ff c c c c c c c } 
11 }
12
13 {
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