[EMAIL PROTECTED] writes:
> Hi,
>       How do I produce a tie to one note of a chord?


You can't do that standard.  You can overcome this by resurrecting teh
Thread context, eg.


        \paper {
                \translator { 
                        \VoiceContext
                        \name "NewVoice";
                        \remove "Note_head_engraver";
                        \remove "Tie_engraver";
                        \accepts "Thread";
                }
                \translator { 
                        \type Engraver_group_engraver
                        \consists "Note_head_engraver";
                        \consists "Tie_engraver";
                        \name "Thread";
                }
                \translator {
                        \StaffContext
                        \accepts Thread;
                }
        }

Then you can have a tie within every thread, eg

        <
        \type Thread { a2 ~ a }
        { s2 a, }
        >


--
Han-Wen Nienhuys, [EMAIL PROTECTED] ** GNU LilyPond - The Music Typesetter 
      http://www.cs.uu.nl/people/hanwen/lilypond/index.html 

Reply via email to