lilypond-user
[Top][All Lists]
Advanced

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

Re: Barcheck with full measure rests


From: Lukas-Fabian Moser
Subject: Re: Barcheck with full measure rests
Date: Tue, 21 May 2019 15:18:44 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1

Hi Michael,

The use case is this

%%%%%%%%%%%
\version "2.21.0"
{ R1*3/4 s4^\markup "some markup" |}
%%%%%%%%%%%

Of course I could achieve that by
%%%%%%%%%%%
\version "2.21.0"
{ << { \oneVoice R1 } \\ { s2. s4^\markup "some markup" |} >> }
%%%%%%%%%%%
but that seems ugly and at least to me unnecessarily complicated.

It actually is too complicated since using the \\ shorthand creates two new voices. You might just as well write

<< R1 { s2. s4^\markup "some markup" } >>

without needing to resort to \oneVoice etc. At most, I could imagine that

<< R1 \new Voice { s2. s4^\markup "some markup" } >>

might be reasonable.

Best
Lukas




reply via email to

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