lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: chord and slur shape in TabStaff


From: Pierre Perol-Schneider
Subject: Re: chord and slur shape in TabStaff
Date: Fri, 2 May 2014 11:08:12 +0200

2014-05-02 9:19 GMT+02:00 Federico Bruni <address@hidden>:
What's the correct way to notate this guitar hammer-on/pull-off?
I want the slur to start from the 2 in TabStaff ( note A of the chord). I may use slurDown, but this changes also the direction.

What would you recommend?

Hi Fedirico,
I may come too late on this but I definitly see three voices here.
So I would simply add a 3rd voice :

%%%%%%%%%%%%%%%%%%%%%
upper = \relative c' {

   <<

   { e1 } \\

   {

     \voiceThree

     \once\override NoteColumn.force-hshift = #0.5

     a,8( ais a g) b2\rest

   }

   >>

}


lower = \relative c {

   a1

}


\score {

   \new StaffGroup <<

     \new Staff = "guitar" <<

       \context Voice = "first voice" { \clef "G_8" \voiceOne \upper }

         \context Voice = "second voice" { \clef "G_8" \voiceTwo \lower }

     >>

      \new TabStaff = "tab" <<

       \context TabVoice = "tab first voice" { \clef "moderntab" \voiceOne \upper }

       \context TabVoice = "tab second voice" { \clef "moderntab" \voiceTwo \lower }

     >>

   >>

}


%%%%%%%%%%%%%%


~Pierre 

reply via email to

[Prev in Thread] Current Thread [Next in Thread]