]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-staff-size.ly
Merge branch 'dev/mf2pt1-build' of git://git.sv.gnu.org/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         \clef bass
21         c8 c c c  c c c c
22     }
23 }
24