Hi Erik,
Am 01.12.21 um 20:31 schrieb E Appeldoorn:
I have a score with multiple instruments where some instruments have
the \appoggiatura, but the voices above (and/or) below are simple
straight voices.
When compiling the score the voice without the \appoggiatura looks
uneven. There is extra space between the notes where in the other
voice is the \appog.
I thought it ugly and found some engraved scores where this isn't the
case. What would be the proper way to solve this.
\version "2.22.1"
MyUpper = \relative c'' { c4 b a g8[ \appoggiatura {f32[ e]} d8] }
MyLower = \relative c' { f4 g a b16 c b c }
\Score {
<< \MyUpper
\MyLower
>>
}
Does
\layout {
\override Score.SpacingSpanner.strict-note-spacing = ##t
}
help? (It might have side-effects, but I don't have time at the moment
to really think about the implications. But it's certainly possible to
e.g. let the override act only for the amount of time for which it is
needed.)
Lukas