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