]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/volta-below-chords.ly
Fix 2241: Proper copyright/header/tagline handling with multiple bookparts
[lilypond.git] / Documentation / snippets / volta-below-chords.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "chords, repeats, staff-notation"
11
12   texidoc = "
13 By adding the @code{Volta_engraver} to the relevant staff, volte can be
14 put under chords.
15
16 "
17   doctitle = "Volta below chords"
18 } % begin verbatim
19
20
21 \score {
22   <<
23     \chords {
24       c1
25       c1
26     }
27     \new Staff \with {
28       \consists "Volta_engraver"
29     }
30     {
31       \repeat volta 2 { c'1 }
32       \alternative { c' }
33     }
34   >>
35   \layout {
36     \context {
37       \Score
38       \remove "Volta_engraver"
39     }
40   }
41 }