]> git.donarmstrong.com Git - lilypond.git/commitdiff
Reinstated old file.
authorGraham Percival <graham@percival-music.ca>
Sat, 22 Jan 2005 03:09:57 +0000 (03:09 +0000)
committerGraham Percival <graham@percival-music.ca>
Sat, 22 Jan 2005 03:09:57 +0000 (03:09 +0000)
ChangeLog
input/test/volta-chord-names.ly [new file with mode: 0644]

index 34870b3f75d48f36c8e472388b2636c0d33b0fa0..5531aaf2ccb5a9c02d31b16d5fc5a42c74492814 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,8 @@
        Documentation/user/music-glossary.tely: changed copyright
        date to 2005 instead of 2004.
 
+       * input/test/volta-chord-names.ly: added old example back.
+
 2005-01-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
        * mf/feta-beugel.mf: use design size 20 (not 15).
diff --git a/input/test/volta-chord-names.ly b/input/test/volta-chord-names.ly
new file mode 100644 (file)
index 0000000..578a977
--- /dev/null
@@ -0,0 +1,20 @@
+\header {
+    texidoc = "Volta brackets can be placed over chord names. This
+requires adding an engraver to @code{ChordNames}, and setting
+@code{voltaOnThisStaff} correctly."
+}
+
+\version "2.4.0"
+\score { <<
+  \new ChordNames \with {
+    voltaOnThisStaff = ##t
+  } \chordmode {
+    c1 c
+  }
+  \new Staff \with {
+    voltaOnThisStaff = ##f
+  }
+  {
+    \repeat volta 2 { c'1 } \alternative { c' }
+  }
+>> }