Hi Phil,
Am 31.08.2010 um 11:48 schrieb Phil Burfitt:

Hi Patrick,

I'm not familiar with the inner workings of lilypond, but it
seems to me the problem occurs when a TabStaff command
(\set TabStaff.minimumFret) is executed in a Staff context.

using \set minimumFret = #5 instead should solve the problem.
You're right, thanks! But it's still a bit confusing to me that the following example is typeset without any problems:

\version "2.13.30"
global = {
  s1
}
music = {
  \set TabStaff.minimumFret = #5
        c'1
}
\score {
  <<
    \new Staff = "Music" <<
      \new Voice = "global" {
        \global
      }
      \new Voice = "music" {
        \clef "treble_8"
        \music
      }
    >>
    \new TabStaff = "Tab" <<
      \new TabVoice = "global" {
        \global
      }
      \new TabVoice = "tabmusic" {
        \music
      }
    >>
  >>
}



Regards,
Phil.

patrick


_______________________________________________
bug-lilypond mailing list
bug-lilypond@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to