\version "2.12" \include "english.ly" \include "init_Luketan.ly" \header { title = "My Song Template" } global = { %% put key information, time signatures, etc. here } melodyNotes = \relative { %% put melody notes here } lyricsVerseOne = \lyricmode { %% put lyrics here } chordChanges = \chordmode { %% put chord changes here } %% This is where the score is put together. \score { << \new ChordNames \chordChanges \new Staff << \new Voice = "Voice_vocals" << \global \dynamicUp \melodyNotes >> >> \new Lyrics \lyricsto "Voice_vocals" \lyricsVerseOne >> } %% Additional lyrics section \markup { \vspace #6 } \markup \override #'(font-size . 2) { \hspace #24 \fontsize #0.5 \italic "Additional Verses" } \markup \override #'(font-size . 2) \override #'(baseline-skip . 8) { \fill-line { \left-column { \vspace #0 \line { Here’s a lyric with \lwc #"inline" #"G" chord changes } } } }