lilypond-user
[Top][All Lists]
Advanced

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

Re: Lyrics not under correct staff


From: Andrew Bernard
Subject: Re: Lyrics not under correct staff
Date: Mon, 19 Nov 2018 22:26:43 +1100

Hi Peter,

One way to do it. Just follow the example in the NR.

You have 2.19.52. I'd urge you to upgrade to 2.19.82. My usual comment: although the development releases are called 'unstable' I find it is pretty hard to crash them, and I bash away at the program all day. I think the term unstable, though technically accurate, puts many people off from taking advantage of many great new features and capabilities.

Andrew

%%====
\language "english"

poem = \lyricmode {
  Blah blah blah blah
}

vocal = {
  d'4 e' f' g'
}

rh = {
  c'4 c' c' c'
}

\score {
  <<
    \new Voice = "one" {
      \clef "treble"
      \time 4/4
      \vocal
    }
    \new Lyrics \lyricsto "one" {
      \poem
    }

    \new PianoStaff {
      \new Staff = "PianoRH" {
        \clef "treble"
        \time 4/4
        \rh
      }

    }

  >>

}
%%====


reply via email to

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