Dear Lilypond users

I know this is probably quite an easy one but I've tried searching the doco
and haven't been able to figure it out :(

Just want to be able to add some more space between notes so that the
fingering notation is visible.  In my below example, the "1"
finger notation in the ukulele F5 power chord  is hidden behind the previous
E5 power chord.  What can I do to fix this?

Thanks in advance.

Kind regards,
Scott Rippon.

% LilyPond version
\version "2.12.3"

\layout{
  \context{
    \Voice
    \consists "Horizontal_bracket_engraver"
  }
}

\book{
  \header{
    title = "CHORDS"
    subtitle = "Based on AMEB CPM Guitar Step 1 Advancing"
    instrument = "Ukulele G-C-E-A"
    composer = "Scott Rippon"
  }

  % Power Chords
  \score {
    \relative c'
    {
    \time 3/4
      \override Fingering #'font-size = #-7
      \set fingeringOrientations = #'(left)
     <e-1 b'-\tweak #'extra-offset #'(-1 . 0)-1 b-4 e-4>-"E5"
     <f-1 c'-\tweak #'extra-offset #'(-1 . 0)-1 c-4 f-4>-"F5"
     <g-1 d'-\tweak #'extra-offset #'(-1 . 0)-1 d-4 g-4>-"G5"
     <e-2 a-\tweak #'extra-offset #'(-1 . 0)-1 a-3 e'-4>-"A5"
     <fis-1 b-\tweak #'extra-offset #'(-1 . 0)-1 b-3 fis'-4>-"B5"
     <g-2 c-\tweak #'extra-offset #'(-1 . 0)-1 c-3 g'-4>-"C5"
      \bar "|."
    }
    \header {
      piece = "Power Chords"
    }
  }

    \new StaffGroup <<
          \relative c'
      \new Staff {
        \time 3/4
     <e b' b e>
     <f c' c f>
     <g d' d g>
     <e a a e'>
     <fis b b fis'>
     <g c c g'>
        \bar "|."
      }
      \relative c'
      \new  TabStaff {
        \time 3/4
        \set TabStaff.stringTunings = #'(+9 +4 0 +7)
        \set TabStaff.minimumFret = #3
        <e b'\4 b e>-"E5"
        \set TabStaff.minimumFret = #5
        <f c'\4 c f>-"F5"
        \set TabStaff.minimumFret = #7
       <g d'\4 d g>-"G5"
        \set TabStaff.minimumFret = #2
       <e a\4 a e'>-"A5"
       \set TabStaff.minimumFret = #4
       <fis b\4 b fis'>-"B5"
       \set TabStaff.minimumFret = #5
       <g c\4 c g'>-"C5"
        \bar "|."
      }
    >>
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to