Re: guitar tablature and fingering

2008-11-17 Thread Christian Herzberg
Dear Coralline,

I encounter that problem a year ago and figured out to remove 
the New_fingering_engraver which is responsible for some fingering but even 
other stuff. 
Important is, that the New_fingering_engraver isn't related to the voice 
context and not to the staff context never mind that the staff draw some 
fingerings like your example shows.

Adding a voice context in the score section did the trick for me:

...
\score  {

  \new Staff = guitar {
    \new Voice = guitarvoice \with {
      \remove New_fingering_engraver
    } {
      \key a \minor
      \time 3/4
      \clef treble
      \transposition  c  \guitar
      \set Staff.midiInstrument = #acoustic guitar (nylon)
    }
  }
...

Regards,
Chrisch
PS: I tried the development version 2.11.63, which refer notes on the lowest 
string much better (Thanks a lot).
-- 
Christian Herzberg


Am Sonntag, 16. November 2008 07:17:37 schrieb coralline algae:
 Although I have used lilypond for awhile for scores, I am just learning
 to use the tabulature.  The sample score I am inserting is working
 for the most part but I would like to suppress the fingering on the
 note staff if possible.   Also my eyes need some assist hence
 the large staff size

 thanks



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: guitar tablature and fingering

2008-11-16 Thread Jonathan Kulp
Do you mean you want to suppress the string numbers on the regular 
staff?  If I were you I would try making them transparent, much like you 
did with the beams and stems on the TabStaff.  Substitute StringNumber

where you put TabStaff.Beam.

Jon

coralline algae wrote:

Although I have used lilypond for awhile for scores, I am just learning
to use the tabulature.  The sample score I am inserting is working
for the most part but I would like to suppress the fingering on the
note staff if possible.   Also my eyes need some assist hence
the large staff size

thanks



--
Jonathan Kulp
http://www.jonathankulp.com


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


guitar tablature and fingering

2008-11-15 Thread coralline algae
Although I have used lilypond for awhile for scores, I am just learning
to use the tabulature.  The sample score I am inserting is working
for the most part but I would like to suppress the fingering on the
note staff if possible.   Also my eyes need some assist hence
the large staff size

thanks

%
%
%
\header {
  filename =scarborough05-tab.ly
  title =   Scarborough Fair
  composer =
  style =   english ballad
  lastupdated = 2008/Nov/16
}

\version 2.10.33
#(set-default-paper-size letter)
#(set-global-staff-size 26)


guitar =   {

%  1
  a8  e''8  g'8  fis'8  d''8  g'8  |

  a8  e''8  a'8  e'8  b'8  a'8 |

   g\6  b'\2 8  g'8   c''  e' 8  g'8   d' b' 8  g'8 |

  a8  e''8  g'8  fis'8  d''8  g'8  |
  \break

%  5
  a8  e''8  a'8  e'8  b'8  b8  |

  c'8  e''8  e'8  c''8  g'8  c''8  |

  a8  e''8  e'8  c''8  a'8  c''8   |

   c'  e'' 8  g'8   d'  fis'' 8  a'8  d''8  a'8   |
  \break

%  9
  a8  e''8  g'8  fis'8  d''8  g'8  |

  a8  e''8  a'8  e'8b'8   a'8  |

  a8  e''8  g'8  fis'8  d''8  g'8  |

  a8  e''8  a'8  e'8b'8   a'8  |
  \break

%  13
  a8  c''8  a'8  e''8  a8   b8 |

  c'8  c''8  g'8  e''8  c''8  g'8  |

   c'   e'' 8  g'8   b  d'' 8  g'8   a  c'' 8  g'8 |

   g\6  b' 8  g''8  d'8  g'8   e'  c'' 8   d'  b' 8|
  \break

%  17
   e'  c'' 4   d'  b' 4  g8\6  g'8 |

  a8  e''8  g'8  fis'8  d''8  g'8  |

  g8\6  g'8   d'  b' 8  g'8   e'  c'' 8  g'8   |

   g\6 g'' 8  g'8   e'  c'' 8  g'8   d'  b' 4|
  \break

%  21
  a8  e''8  g'8  fis'8  d''8  g'8  |

  a8  e''8  a'8  e'8  b'8  a'8 |

  a8  e''8  g'8  fis'8  d''8  g'8  |

  a8  e''8  a'8  e'8  b'8  a'8 |
  \break

} %  end note block


\score  {

  \new Staff = guitar  {
  \key a \minor
  \time 3/4
  \clef treble
  \transposition  c  \guitar
  \set Staff.midiInstrument = #acoustic guitar (nylon)
  }

  \new TabStaff = guitartab  {
  \override TabStaff.Stem #'transparent = ##t
  \override TabStaff.Beam #'transparent = ##t
  \transpose  c  c,  \guitar
  }


\layout  {   }
\midi  {
  \context  {
  \Score
 tempoWholesPerMinute = #(ly:make-moment 70 4)
  }
   }
} %  end score block


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user