lilypond-user
[Top][All Lists]
Advanced

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

Ties, \lyricsto and Score.skipTypesetting causes misaligned lyrics


From: caagr98
Subject: Ties, \lyricsto and Score.skipTypesetting causes misaligned lyrics
Date: Mon, 6 Mar 2017 12:04:49 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.7.1

Using those three in combination seems to be a have a tendency to get the lyrics misaligned.

```
\version "2.18.2"
<<
        \new Voice = "staff" {
                \set Score.skipTypesetting = ##t
                \set Score.skipTypesetting = ##f
                a~
                a
                b
                c
        }
        \new Lyrics \lyricsto "staff" {
                a __ b c
        }
>>
```

With this code, all the lyrics appear on the appropriate note:

Notes: a~a b c
Lyrics:A__ B C

If the `skipTypesetting = ##f` is moved one line down (after the tied A), I'd expect the first a, as well as its lyric, to not show (the underscore would be skipped as well), but the B and C would be unaffected:

N:a~|a b c
L:A_|  B C

Instead, the A lyric is skipped entirely (probably because the note it's attached to is skipped), leading to the following lyrics being moved backward to fill the gap.

N:a~|a b c
L:A_|B C

This doesn't only happen if you break halfway through a tie; *any* ties within the skipped region causes misaligning.

Is there some way to work around this?



reply via email to

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