lilypond-user
[Top][All Lists]
Advanced

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

Re: funny construction


From: David Wright
Subject: Re: funny construction
Date: Mon, 18 Jul 2016 09:29:38 -0500
User-agent: Mutt/1.5.21 (2010-09-15)

On Mon 18 Jul 2016 at 08:41:13 (-0500), Br. Gabriel-Marie | SSPX wrote:
> I have a song that goes like this:
> ----------------------------------
> soprano
> alto
>     15 lyric verses in between
> tenor
> bass
> 
> soprano
> alto
>     just one lyric in between - it's the chorus
> tenor
> bass
> 
> 
> soprano
> alto
>     15 lyric verses in between \repeatOfFourWords
> tenor
> bass

Your outermost enclosing << .. >> says play the enclosed structures
simultaneously. They shouldn't be there.

Replace:

\score {
<<
    \new StaffGroup ...
    \new StaffGroup ...
    \new StaffGroup ...
>>
    \layout { }
}

by:

\score {
    \new StaffGroup ...
    \layout { }
}
\score {
    \new StaffGroup ...
    \layout { }
}
\score {
    \new StaffGroup ...
    \layout { }
}

If the material is sufficiently heterogeneous, it can
make sense to concatenate multiple scores.

Cheers,
David.



reply via email to

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