]> git.donarmstrong.com Git - lilypond.git/commitdiff
New file.
authorJan Nieuwenhuizen <janneke@gnu.org>
Tue, 13 Aug 2002 15:51:37 +0000 (15:51 +0000)
committerJan Nieuwenhuizen <janneke@gnu.org>
Tue, 13 Aug 2002 15:51:37 +0000 (15:51 +0000)
input/template/melody-chords.ly [new file with mode: 0644]

diff --git a/input/template/melody-chords.ly b/input/template/melody-chords.ly
new file mode 100644 (file)
index 0000000..f8662dd
--- /dev/null
@@ -0,0 +1,26 @@
+\version "1.5.68"
+
+\header {
+  texidoc = "lead sheet format: chords with melody."
+}
+
+harmonies = \chords {
+  c4:m f:min7 g:maj c:aug d2:dim b:sus
+}
+
+melody = \notes \relative c' {
+  f4 [e8 c] d4 g | a2 ~ a2
+}
+
+\score {
+  \notes <
+    \context ChordNames {
+        \property ChordNames.chordChanges = ##t
+        \harmonies
+    }
+    \context Staff = one \melody
+  >
+
+  \paper{ }
+  \midi{ }
+}