]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-staff-size.ly
Merge branch 'master' of /home/lilycvs/git/lily/
[lilypond.git] / input / lsr / changing-the-staff-size.ly
1 %% Do not edit this file; it is auto-generated from LSR!
2 %% Tags: staff-notation, tweaks-and-overrides, paper-and-layout
3 \version "2.11.35"
4
5 \header { texidoc = "
6 In order to change staff sizes, both @code{staff-space} and
7 @code{fontSize} must be scaled. 
8 " }
9 % begin verbatim
10 {
11     \new Staff \relative c'' { \dynamicDown c8 \ff c c c c c c c } 
12 }
13
14 {
15     \new Staff \with {
16         fontSize = #-3
17         \override StaffSymbol #'staff-space = #(magstep -3)
18     } {
19         \clef bass
20         c8 c c c  c c c c
21     }
22 }
23