]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/template/melody-lyrics-chords.ly
add me.
[lilypond.git] / input / template / melody-lyrics-chords.ly
index 80dcd6c70de4961ead313e237c1efdda3014bf76..0f723e27b36b64f96b6d22d3a3df58b2f92bd2f1 100644 (file)
@@ -1,45 +1,31 @@
-\version "1.5.1"
-
-\header {
-  dedication = "dedication"
-  title = "Title"
-  subtitle = "Subtitle"
-  subsubtitle = "Subsubtitle"
-  composer = "Composer (xxxx-yyyy)"
-  opus = "Opus 0"
-  piece = "Piece I"
-  instrument = "Instrument"
-  arranger = "Arranger"
-  poet = "Poet"
-  texttranslator = "Translator"
-  copyright = "public domain"
-  enteredby = "jcn"
-  source =  "urtext"
+\version "2.3.4"
+\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.noAutoBeaming = ##t
-        \property Staff.automaticMelismata = ##t
+    \context Voice = one {
+       \autoBeamOff
         \melody
-      }
-      \context Lyrics \text
-  >
+    }
+    \lyricsto "one" \new Lyrics \text
+  >>
   \paper { }
   \midi  { }
 }