Hi, I'm using a separate voice to indicate articulations (bowing directions in this example), but occasionally the articulations collide with the note stems (as seen in bar 2 of the snippet below).
My goal is to be able to turn articulations on and off easily, especially for different versions of the same score. Questions 1. Is this the best way to separate articulations from the melody? 2. Is there a better way to turn articulations on and off? 3. How do I avoid collisions between the articulations and the note stems? Thanks, Greg % - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - % % - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - % \version "2.22" Chords = \chords { \set chordChanges = ##t c1 c1 f2 g2 c1 } Music = \relative c' { e8 dis e g ~ g4 e g8 a g c ~ c8 b c d e d c b c d4 c8 ~ c2. r4 } Bowing = \relative c' { s8\downbow s8 s8 s8\upbow ~ s4 s4\downbow s8\downbow s8 s8 s8\upbow ~ s8 s8\upbow s8 s8 s8\downbow s8 s8 s8 s8\downbow s4\upbow s8\upbow ~ s2. s4 } % - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - % << \Chords \new Staff << \new Voice { \Bowing } \new Voice { \Music } >> >> % - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - % % - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - %