]> git.donarmstrong.com Git - lilypond.git/blob - input/test/staff-size.ly
release commit
[lilypond.git] / input / test / staff-size.ly
1 #(ly:set-option 'old-relative)
2 \version "2.1.7"
3
4 \header { texidoc = "@cindex Staff Size
5
6 For setting staff sizes, both @code{staff-space} and @code{fontSize}
7 must be set."
8
9 }
10
11 \score {
12   \notes \relative c' <<
13       \new Staff \relative c'' {
14           \dynamicDown c,,4 \ff c c c
15       }
16       \new Staff \with {
17           fontSize = #-1
18           StaffSymbol \set #'staff-space = #(magstep -1)
19       } {
20           \clef bass
21           c8 c c c  c c c c
22       }
23   >>
24   \paper { raggedright = ##t}
25 }
26
27