lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: set-global-staff-size


From: Aaron Hill
Subject: Re: set-global-staff-size
Date: Mon, 19 Aug 2019 19:25:36 -0700
User-agent: Roundcube Webmail/1.3.8

On 2019-08-19 6:50 pm, Vaughan McAlley wrote:
Hi everyone,

The manual says:

“To set the staff size globally for all scores in a file (or in a \book
block, to be precise), use set-global-staff-size”

What am I doing wrong here? The size 8 one is large and the size 50 one is
normal (20 probably?)

It would seem the set-global-staff-size command needs to execute *before* beginning a \book block:

%%%%
\version "2.19.81"

#(set-global-staff-size 50)
\book {
    \score {
      c'1^"#(set-global-staff-size 50)"
    \layout {}
    }
}

#(set-global-staff-size 8)
\book {
    \score {
      c'1^"#(set-global-staff-size 8)"
    \layout {}
    }
}
%%%%

-- Aaron Hill



reply via email to

[Prev in Thread] Current Thread [Next in Thread]