lilypond-user
[Top][All Lists]
Advanced

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

Re: lyrics with tab staff


From: Federico Bruni
Subject: Re: lyrics with tab staff
Date: Sat, 15 Dec 2012 15:29:42 +0100
User-agent: Mozilla/5.0 (X11; Linux i686; rv:10.0.10) Gecko/20121028 Icedove/10.0.10

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,
  }
  >>
}



reply via email to

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