]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-staff-size.ly
Merge branch 'lilypond/translation' of ssh://trettig@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 \version "2.11.38"
4
5 \header {
6   lsrtags = "staff-notation, tweaks-and-overrides, paper-and-layout"
7
8   texidoc = "
9 Though the simplest way to resize staves is to use
10 @code{#(set-global-staff-size xx)}, an individual staff's size can be
11 changed by scaling the properties @code{staff-space} and
12 @code{fontSize}. 
13
14 "
15   doctitle = "Changing the staff size"
16 } % begin verbatim
17 <<
18   \new Staff \relative c'' { \dynamicDown c8\ff c c c c c c c } 
19   \new Staff \with {
20     fontSize = #-3
21     \override StaffSymbol #'staff-space = #(magstep -3)
22   }
23   {
24     \clef bass
25     c8 c c c c\f c c c
26   }
27 >>
28