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