]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-staff-size.ly
Merge master into nested-bookparts
[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.62"
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'' {
19     \dynamicDown
20     c8\ff c c c c c c c
21   }
22   \new Staff \with {
23     fontSize = #-3
24     \override StaffSymbol #'staff-space = #(magstep -3)
25   } {
26     \clef bass
27     c8 c c c c\f c c c
28   }
29 >>