From: Graham Percival Date: Tue, 20 May 2008 00:55:59 +0000 (-0700) Subject: New snippet. X-Git-Tag: release/2.11.47-1~5^2~27^2~12 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=97e611aa9196316655565dbdd9a5dc3c05dbfacf;p=lilypond.git New snippet. --- diff --git a/input/new/volta-below-chords.ly b/input/new/volta-below-chords.ly new file mode 100644 index 0000000000..63844f39da --- /dev/null +++ b/input/new/volta-below-chords.ly @@ -0,0 +1,29 @@ +\version "2.11.36" +\layout { ragged-right= ##t } +\header { + lsrtags = "repeats,staff-notation,chords" + texidoc = "By adding the @code{Volta_engraver} to the relevant +staff, volte can be put under chords." + doctitle = "Volta under chords" +} + +% chords above volta +\score { + << + \chords { + c1 + c + } + \new Staff \with { \consists Volta_engraver } { + \repeat volta 2 { c'1 } + \alternative { c' } + } + >> + \layout { + \context { + \Score + \remove Volta_engraver + } + } +} +