Hi Michael,
Am 07.05.26 um 09:41 schrieb Michael Scheer:
Oh, so elegant - works - thank you!
Xavier Scheuer schrieb:
\set breathMarkType = ##f
But beware of a subtle difference:
\version "2.26"
music =
{
c'8 8 \breathe 8 8 8 8 8 8
}
\score {
\layout {
\set breathMarkType = ##f
}
\music
}
\score {
\layout {
\omit BreathingSign
}
\music
}
Namely, breathing signs stop beams. If you set breathMarkType = ##f, no
breathing sign gets created, so the auto-beam mechanism doesn't break
the beam. If we \omit the BreathingSign, the grob gets created (and
acknowledged by the auto-beam engraver, thus breaking the beam), only no
graphical output from the breathing sign gets produced.
Lukas