]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/volta-below-chords.ly
32771d44582e2953d36c6b9550b53323320c1973
[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.57"
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 \score {
20   <<
21     \chords {
22       c1
23       c1
24     }
25     \new Staff \with { \consists "Volta_engraver" } {
26       \repeat volta 2 { c'1 }
27       \alternative { c' }
28     }
29   >>
30   \layout {
31     \context {
32       \Score
33       \remove "Volta_engraver"
34     }
35   }
36 }