Il 15/12/2012 14:56, Gerard McConnell ha scritto:
Hello, I would like to print lyrics below tab staff.
The following produces the tab plus unwanted music notation at actual
pitch with lyrics underneath
that.

\score {
     \new TabStaff {
         d4\4 d\4 a\3 a\3 b\3 b\3 a2\3
     }
     \addlyrics {
         Twink -- le twink -- le lit -- tle star,
     }
}

I think that you may find some hints here:
http://lilypond.org/doc/v2.17/Documentation/usage/common-errors#an-extra-staff-appears

This should do what you want:

\version "2.17.9"

\score {
  <<
  \new TabStaff {
    \context TabVoice = "music" {
        d4\4 d\4 a\3 a\3 b\3 b\3 a2\3
    }
  }

  \lyricsto "music" \new Lyrics {
    Twink -- le twink -- le lit -- tle star,
  }
  >>
}

_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to