]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/single-staff-template-with-notes,-lyrics,-chords-and-frets.ly
LSR: Update.
[lilypond.git] / input / lsr / single-staff-template-with-notes,-lyrics,-chords-and-frets.ly
index bff63283ea847a441a3c42b7f9c7ce8cabc1834b..9f9822ce03760c6d13f4b13cc1364df53a6a5b4b 100644 (file)
@@ -1,6 +1,6 @@
 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-\version "2.12.0"
+\version "2.12.3"
 
 \header {
   lsrtags = "vocal-music, chords, template"
@@ -21,15 +21,6 @@ fret diagrams.
   doctitle = "Single staff template with notes, lyrics, chords and frets"
 } % begin verbatim
 
-% Define the fret diagrams to be used
-cFretDiagram = \markup {
-  \fret-diagram #"6-x;5-3-3;4-2-2;3-o;2-1-1;1-o;"
-}
-
-gFretDiagram = \markup {
-  \fret-diagram #"6-3-2;5-2-1;4-o;3-o;2-o;1-3-3;"
-}
-
 verseI = \lyricmode {
   \set stanza = #"1."
   This is the first verse
@@ -40,36 +31,34 @@ verseII = \lyricmode {
   This is the second verse.
 }
 
-theChords = \new ChordNames {
-  \chordmode {
-    % insert the chords for chordnames here
-    c2 g4 c
-  }
+theChords = \chordmode {
+  % insert chords for chordnames and fretboards here
+  c2 g4 c
 }
 
-staffMelody = \new Staff  {
- \context Voice = "voiceMelody" {
+staffMelody = \relative c' {
    \key c \major
    \clef treble
-   \relative c' {
-     % Type notes and fret diagram markups here
-     c4^\cFretDiagram d8 e f4^\gFretDiagram g^\cFretDiagram
-     \bar "|."
-   }
- }
+   % Type notes for melody here
+   c4 d8 e f4 g
+   \bar "|."
 }
 
 \score {
   <<
-    \theChords
-    \staffMelody
-    \new Lyrics = "lyricsI" \lyricmode {
+    \context ChordNames { \theChords }
+    \context FretBoards { \theChords }
+    \new Staff {
+      \context Voice = "voiceMelody" { \staffMelody }
+    }
+    \new Lyrics = "lyricsI" {
       \lyricsto "voiceMelody" \verseI
     }
-    \new Lyrics = "lyricsII" \lyricmode {
+    \new Lyrics = "lyricsII" {
       \lyricsto "voiceMelody" \verseII
     }
   >>
   \layout { }
   \midi { }
 }
+