きらきら星

ピアノ譜を書きたいので勉強しているLilyPondですが、メロディーとコードと歌詞のついた普通の歌集のような楽譜も得意なソフトのようです。
サンプルにきらきら星を入れてみました。
twinkle.pdf 直

\version "2.12.3"
\header {
   title = "きらきら星"
   subtitle = "Twinkle, Twinkle, Little Star"
}
harmonies = \chordmode {
   c2 c f c
}
melody = \relative c' {
   \numericTimeSignature
   \time  2/4
   c4 c | %1
   g' g  | %2
   a a  | %3
   g2 | %4
}
text = \lyricmode {
twin -- kle twin -- kle lit -- tle star
}
\score {
   <<
   \new ChordNames {
      \set chordChanges = ##t
      \harmonies
   }
   \new Staff { \melody }
   \addlyrics { \text }
   >>
}