]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/volta-below-chords.ly
Split WWW target in two stages WWW-1 and WWW-2
[lilypond.git] / input / lsr / volta-below-chords.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 \version "2.11.46"
4 \layout { ragged-right= ##t }
5 \header {
6   lsrtags = "repeats,staff-notation,chords"
7   texidoc = "By adding the @code{Volta_engraver} to the relevant
8 staff, volte can be put under chords."
9   doctitle = "Volta under chords"
10 } % begin verbatim
11
12 % chords above volta
13 \score {
14   <<
15     \chords {
16       c1
17        c
18   }
19   \new Staff \with { \consists Volta_engraver } {
20      \repeat volta 2 { c'1 }
21      \alternative { c' }
22      }
23   >>
24   \layout {
25     \context {
26       \Score
27       \remove Volta_engraver
28     }
29   }
30 }
31