\version "2.12" \include "english.ly" \include "init_Luketan.ly" \header { title = "Auld Lang Syne" } global = { \key c \major \time 3/4 %% verse s4*3*16 %% alt/chorus s4*3*16 \bar "|." } melodyNotes = \relative { \clef treble %% verse c2 c4 | c2 e4 | d2 c4 | d2 e8( d) | c2 c4 | e2 g4 | a2. ~ | a2 a4 | g2 e4 | e2 c4 | d2 c4 | d2 e8( d) | c2 a4 | a2 g4 | c2. ~ | c4 r %% alt/chorus a' | g2 e4 | e2 c4 | d2 c4 | d2 a'4 | g2 e4 | e2 g4 | a2. ~ | a4 r a | g2 e4 | e2 c4 | d2 c4 | d2 e8( d) | c2 a4 | a2 g4 | c2. ~ | c } lyricWords = \lyricmode { There’s a song we use to sing When time to bade good -- bye, __ We lift our voice in hap -- py cheer And __ sing the ‘auld lang syne’. __ Let’s sing the auld lang syne, my dear, Let’s sing the auld lang syne, __ For ev’ -- ry one we’ve loved and lost, Let’s sing the auld lang syne. __ } chordChanges = \chordmode { %% verse c2.*2 | g2.*2 | c2.*2 | f2.*2 | c2.*2 | g2.*2 | f2.*2 | c2.*2 | %% alt/chorus c2.*2 | g2.*2 | c2.*2 | f2.*2 | c2.*2 | g2.*2 | f2.*2 | c2.*2 | } \score { << \new ChordNames \chordChanges \new Staff << \new Voice = "Voice_vocals" << \global \dynamicUp \melodyNotes >> >> \new Lyrics \lyricsto "Voice_vocals" \lyricWords >> } \markup { \vspace #6 } \markup \override #'(font-size . 2) { \hspace #16 \fontsize #0.5 \italic "Additional Verses" } \markup \override #'(font-size . 2) \override #'(baseline-skip . 8) { \fill-line { \left-column { \vspace #0 \line { May \lwc #"old" #"C" acquaintance \lwc #"be" #"G" forgot and \lwc #"never" #"C" brought to \lwc #"mind," #"F" } \line { May \lwc #"old" #"C" acquaintance \lwc #"be" #"G" forgot, let’s \lwc #"sing" #"F" the auld lang \lwc #"syne." #"C" } \line { Let’s \lwc #"sing" #"C" the auld lang \lwc #"syne," #"G" my dear, let’s \lwc #"sing" #"C" the auld lang \lwc #"syne," #"F" } \line { For \lwc #"ev’ry" #"C" war we’ve \lwc #"ever" #"G" fought, let’s \lwc #"sing" #"F" the auld lang \lwc #"syne." #"C" } } } }