> Hey all. Ran into a bit of weirdness when trying to do slurred > chords. I'm wanting a slur between each of the matching notes > within the chord.
Why slurs and not ties? > Here's an MWE showing this. > > \version "2.24.0" > \language "english" > > \relative c'' { > b4 b b > < b\1\=1( f\2\=2( b,\3\=3( >4 < b\1\=1) f\2\=2) b,\3\=3) > > < e,\1\=1( b\2\=2( e,\3\=3( >2. < e\1\=1) b\2\=2) e,\3\=3) >2 > } Indeed, this looks like a bug. However, a simple solution is to do the following – but I guess you know this already :-) ``` \version "2.25.0" \relative c'' { b4 b b <b\1 f\2 b,\3>4 ~ <b\1 f\2 b,\3> <e,\1 b\2 e,\3>2. ~ <e\1 b\2 e,\3>2 } ``` Werner