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