>>>>> "Peter" == Peter Crighton <petecrigh...@gmail.com> writes:

Peter> Hello all, I’m in the process of creating sheets that only
Peter> contain lyrics and correctly aligned chords. (This belongs to
Peter> other sheets with music in them, otherwise LilyPond probably
Peter> wouldn’t be the ideal choice for this.  But I want to do these
Peter> all together in LilyPond.)  I have two approaches so far, and
Peter> none of them are ideal …


You can use explicit durations on the lyrics and the chords.

Something like:

accomp=\chords {
  c4 c c c:7 f f c c
}

words=\lyricmode {
  Twinkle2 twinkle little star
}

\score {
  <<
    \context ChordNames \accomp
    \context Lyrics \words
  >>

  \layout {
    \context {
      \ChordNames
      chordChanges = ##t
    }
  }
}

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to