]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/volta-below-chords.ly
4f5934e67a090200b8588a2169527e8cfec958c3
[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.12.0"
4 \header {
5   texidoces = "
6 Mediante la adiciĆ³n del grabador @code{Volta_engraver} al
7 pentagrama pertinente, se pueden poner los corchetes de primera y
8 segunda vez debajo de los acordes.
9
10 "
11   doctitlees = "Corchetes de primera y segunda vez debajo de los acordes"
12
13   lsrtags = "repeats,staff-notation,chords"
14   texidoc = "By adding the @code{Volta_engraver} to the relevant
15 staff, volte can be put under chords."
16   doctitle = "Volta under chords"
17 } % begin verbatim
18
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 }