On 1/4/19 11:55, Thomas Morley wrote:
For the record, one could do:

\layout { \context { \Voice \remove Slur_engraver } }

\new Staff \with { \consists Slur_engraver }
{
   \key aes \major
   \clef bass
   \time 3/4
   <<
       aes,2.\=7( \\ { s4 ees2 } \\ s2. \\ { s2 bes4\=7) }
   >>
}

This has serious drawbacks, you'll not happy using it...

If you don't use phrasing slurs too much, you could do the same trick with a phrasing slur instead of a regular slur, perhaps with somewhat less serious drawbacks:

\layout { \context { \Voice \remove Phrasing_slur_engraver } }

\new Staff \with { \consists Phrasing_slur_engraver }
{
  \key aes \major
  \clef bass
  \time 3/4
  <<
      aes,2.\( \\ { s4 ees2 } \\ s2. \\ { s2 bes4\) }
  >>
}

   /Mats


_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to