昔の日本のうたは2拍子が多いですね。このようなリズムの曲はデフォルトではLilyPondが音符2つずつビーム(連桁)でつないでしまってとても見にくい楽譜になってしまいます。
\autoBeamOff というコマンドを使って、勝手につながないようにする必要があります。
utanomachi01.pdf
utanomachi01.midi
\version "2.16.0" \header { title = "歌の町(よい子が住んでる)" composer = "小村三千三" } global = { \key c \major \numericTimeSignature \time 2/4 \tempo 4=80 } chordNames = \chordmode { \global % Chords follow here. \set chordChanges = ##t c2 g:7 c c f f g:7 c g:7 g:7 c c f f c4 c8. g16 c } melody = \relative c'' { \global % Music follows here. \autoBeamOff g8. e16 c8. c16 |%1 d8. c16 d8. e16 |%2 g8. g16 e8. a16 |%3 g4. r8 |%4 \break a8. a16 a8. g16 |%5 c8. d16 c8. a16 |%6 g8. a16 e8. d16 |%7 c4 r |%8 \break d8. e16 d8. c16 |%9 d8. d16 e8. e16 |%10 g4 e8. e16 |%11 g4 r |%12 \break a8.a16 c8. c16 |%13 d8. c16 a8. g16 |%14 c8. c16 a8. g16 |%15 c4 r |%16 \bar "|." } verse = \lyricmode { % Lyrics follow here. } \score { << \new ChordNames \chordNames \new Staff { \melody } \addlyrics { \verse } >> \layout { } \midi { } }