]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/volta-below-chords.ly
LSR: Update.
[lilypond.git] / input / lsr / volta-below-chords.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.12.3"
4
5 \header {
6   lsrtags = "repeats, staff-notation, chords"
7
8   texidoces = "
9 Mediante la adiciĆ³n del grabador @code{Volta_engraver} al
10 pentagrama pertinente, se pueden poner los corchetes de primera y
11 segunda vez debajo de los acordes.
12
13 "
14   doctitlees = "Corchetes de primera y segunda vez debajo de los acordes"
15
16   texidoc = "
17 By adding the @code{Volta_engraver} to the relevant staff, volte can be
18 put under chords.
19
20 "
21   doctitle = "Volta below chords"
22 } % begin verbatim
23
24 \score {
25   <<
26     \chords {
27       c1
28       c1
29     }
30     \new Staff \with {
31       \consists "Volta_engraver"
32     }
33     {
34       \repeat volta 2 { c'1 }
35       \alternative { c' }
36     }
37   >>
38   \layout {
39     \context {
40       \Score
41       \remove "Volta_engraver"
42     }
43   }
44 }