]> git.donarmstrong.com Git - lilypond.git/commitdiff
* input/test/chords-below-volta-bracket.ly,
authorMats Bengtsson <mats.bengtsson@s3.kth.se>
Mon, 5 Jul 2004 12:00:35 +0000 (12:00 +0000)
committerMats Bengtsson <mats.bengtsson@s3.kth.se>
Mon, 5 Jul 2004 12:00:35 +0000 (12:00 +0000)
input/test/no-key-at-end-of-line.ly: New example files (FAQs)

ChangeLog
input/test/chords-below-volta-bracket.ly [new file with mode: 0644]

index bcffd49714590646c31f0c2f26021722d16031fb..a5077bf61c93f80b6a43aefeda065a729aa95ac1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-07-05  Mats Bengtsson  <mabe@drongo.s3.kth.se>
+
+       * input/test/chords-below-volta-bracket.ly,
+       input/test/no-key-at-end-of-line.ly: New example files (FAQs)
+
 2004-07-05  Han-Wen Nienhuys   <hanwen@xs4all.nl>
 
        * input/regression/beam-quant-standard.ly: new file: test standard
diff --git a/input/test/chords-below-volta-bracket.ly b/input/test/chords-below-volta-bracket.ly
new file mode 100644 (file)
index 0000000..65e733e
--- /dev/null
@@ -0,0 +1,30 @@
+\version "2.3.4"
+\header {
+
+    texidoc = "@cindex ChordNames repeats 
+To make the chord names appear below the brackets of the alternative
+endings of a repeat, move the Volta_engraver to the Score level.
+" }
+
+\score{
+   <<
+    \new ChordNames \chords{
+      \repeat volta 2 {
+        f1:maj f:7} \alternative{{bes:7}{c:maj}}
+    }
+    \new Staff \relative c'{
+      \repeat volta 2 { c4 d e f g a b c } \alternative{{g2 e }{c1}}
+    }
+  >>
+  \paper {
+    \context {
+      \Score
+      \consists "Volta_engraver"
+      \override VoltaBracket #'minimum-space = #0
+    }
+    \context {
+      \Staff
+      \remove "Volta_engraver"
+    }
+  }
+}
\ No newline at end of file