Single staff template with notes, lyrics, chords and frets
(Redirected from LSR 472)
			Here is a simple lead sheet template with melody, lyrics, chords and fret diagrams.
\version "2.24.0"
verseI = \lyricmode {
  \set stanza = #"1."
  This is the first verse
}
verseII = \lyricmode {
  \set stanza = #"2."
  This is the second verse.
}
theChords = \chordmode {
  % insert chords for chordnames and fretboards here
  c2 g4 c
}
staffMelody = \relative c' {
   \key c \major
   \clef treble
   % Type notes for melody here
   c4 d8 e f4 g
   \bar "|."
}
\score {
  <<
    \context ChordNames { \theChords }
    \context FretBoards { \theChords }
    \new Staff {
      \context Voice = "voiceMelody" { \staffMelody }
    }
    \new Lyrics = "lyricsI" {
      \lyricsto "voiceMelody" \verseI
    }
    \new Lyrics = "lyricsII" {
      \lyricsto "voiceMelody" \verseII
    }
  >>
  \layout { }
  \midi { }
}