]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-staff-size.ly
Merge commit 'ce4b499'
[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 \version "2.11.38"
4
5 \header {
6   lsrtags = "staff-notation, tweaks-and-overrides, paper-and-layout"
7  texidoc = "
8 In order to change staff sizes, both @code{staff-space} and
9 @code{fontSize} must be scaled. 
10 " }
11 % begin verbatim
12 {
13   \new Staff \relative c'' { \dynamicDown c8 \ff c c c c c c c } 
14 }
15
16 {
17   \new Staff \with {
18     fontSize = #-3
19     \override StaffSymbol #'staff-space = #(magstep -3)
20   }
21   {
22     \clef bass
23     c8 c c c  c c c c
24   }
25 }
26