X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fchanging-the-staff-size.ly;h=b4ed717b42d4e2db890160777b252ee340704e22;hb=2e9a5ee154d49c0a754f908f024f5423a342ab8f;hp=6fb2721a96b3f873dcb9720dc7333dd93ad19114;hpb=61982f69784ce0fe80c719b0bab53d78c24779ce;p=lilypond.git diff --git a/input/lsr/changing-the-staff-size.ly b/input/lsr/changing-the-staff-size.ly index 6fb2721a96..b4ed717b42 100644 --- a/input/lsr/changing-the-staff-size.ly +++ b/input/lsr/changing-the-staff-size.ly @@ -1,23 +1,33 @@ -%% Do not edit this file; it is auto-generated from LSR! -%% Tags: staff-notation -\version "2.11.35" +%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it +%% This file is in the public domain. +\version "2.12.3" -\header { texidoc = " -In order to change staff sizes, both @code{staff-space} and -@code{fontSize} must be scaled. -" } +\header { + lsrtags = "staff-notation, tweaks-and-overrides, paper-and-layout" -{ - \new Staff \relative c'' { \dynamicDown c8 \ff c c c c c c c } -} + texidoc = " +Though the simplest way to resize staves is to use +@code{#(set-global-staff-size xx)}, an individual staff's size can be +changed by scaling the properties @code{'staff-space} and +@code{fontSize}. -{ - \new Staff \with { - fontSize = #-3 - \override StaffSymbol #'staff-space = #(magstep -3) - } { - \clef bass - c8 c c c c c c c +" + doctitle = "Changing the staff size" +} % begin verbatim + +<< + \new Staff { + \relative c'' { + \dynamicDown + c8\ff c c c c c c c } -} + } + \new Staff \with { + fontSize = #-3 + \override StaffSymbol #'staff-space = #(magstep -3) + } { + \clef bass + c8 c c c c\f c c c + } +>>