Try this:
c''1:32( | c1:32 )( | c1:32 )( | c4 ) r4 r2 |
you only need three slurs not four.
Hope this helps,
Jean Brefort (not the
Le dimanche 03 mars 2024 à 18:20 +0100, Gerardo Ballabio a écrit :
> Hello,
> please what is the correct way to draw multiple slurs connected to
> each other? Look at example below to see what I mean (result
> attached).
>
> The following code does what I want but it gives multiple warnings
> like these:
>
> Parsing...
> slur.ly:4:3: warning: Unattached SlurEvent
> Interpreting music...
> slur.ly:4:13: warning: cannot end slur
>
> I tried using ties instead of slurs, that doesn't give warnings, but
> it doesn't look quite the same.
>
> Thanks
> Gerardo
>
> % slur.ly
> %%%%%%%%%%
> \version "2.24.1"
>
> \new Staff \relative {
> ( c''1:32 ) | ( c1:32 ) | ( c1:32 ) | ( c4 ) r4 r2 |
> }
> %%%%%%%%%%
>
> % tie.ly
> %%%%%%%%%%
> \version "2.24.1"
>
> \new Staff \relative {
> c''1:32~ | c1:32~ | c1:32~ | c4 r4 r2 |
> }
> %%%%%%%%%%