]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/template/melody-lyrics-chords.ly
* scripts/convert-ly.py (conv): remove \lyrics from \lyricsto.
[lilypond.git] / input / template / melody-lyrics-chords.ly
index 5326f8598a12c57bc43701f196e8fe3c5e526541..2fdb82090826d0ec4f69a1e997fc4ee5364ec9d3 100644 (file)
@@ -1,32 +1,31 @@
-\version "1.5.68"
-
-\header {
-  texidoc = "popsong format: chords, melody and lyrics."
+\version "2.3.8"
+\header
+{
+    texidoc = "Popsong format: chords, melody and lyrics."
 }
 
-melody = \notes \relative c' {
-  a b c d
+melody =  \relative c'
+{
+    a b c d
 }
 
 text = \lyrics {
-  Aaa Bee Cee Dee
+    Aaa Bee Cee Dee
 }
 
 accompaniment = \chords {
-  a2 c2
+    a2 c2
 }
 
 \score {
-  <
+  <<
     \context ChordNames \accompaniment
-    \addlyrics
-      \context Staff = one {
-        \property Staff.autoBeaming = ##f
-        \property Staff.automaticMelismata = ##t
+    \context Voice = one {
+       \autoBeamOff
         \melody
-      }
-      \context Lyrics \text
-  >
+    }
+    \lyricsto "one" \new Lyrics \text
+  >>
   \paper { }
   \midi  { }
 }