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?
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user