]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/volta-below-chords.ly
Add '-dcrop' option to ps and svg backends
[lilypond.git] / Documentation / snippets / volta-below-chords.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.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.18.0"
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 \score {
21   <<
22     \chords {
23       c1
24       c1
25     }
26     \new Staff \with {
27       \consists "Volta_engraver"
28     }
29     {
30       \repeat volta 2 { c'1 }
31       \alternative { c' }
32     }
33   >>
34   \layout {
35     \context {
36       \Score
37       \remove "Volta_engraver"
38     }
39   }
40 }