From: Graham Percival Date: Sat, 22 Jan 2005 03:09:57 +0000 (+0000) Subject: Reinstated old file. X-Git-Tag: release/2.5.14~229 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=561c817d4fcad1cbb318ca63b3d6aa4ba9174768;p=lilypond.git Reinstated old file. --- diff --git a/ChangeLog b/ChangeLog index 34870b3f75..5531aaf2cc 100644 --- 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 * 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 index 0000000000..578a977e3a --- /dev/null +++ b/input/test/volta-chord-names.ly @@ -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' } + } +>> }