]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/volta-below-chords.ly
Docs: run convert-ly for 2.14.0.
[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.0"
8
9 \header {
10   lsrtags = "repeats, staff-notation, chords"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13   texidoces = "
14 Mediante la adición del grabador @code{Volta_engraver} al
15 pentagrama pertinente, se pueden poner los corchetes de primera y
16 segunda vez debajo de los acordes.
17
18 "
19   doctitlees = "Corchetes de primera y segunda vez debajo de los acordes"
20
21
22
23 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
24   texidocde = "
25 Indem man den @code{Volta_engraver} zu dem entsprechenden Notensystem
26 hinzufügt, können Wiederholungsklammern unterhalb der Akkorde gesetzt
27 werden.
28
29 "
30   doctitlede = "Wiederholungs-(Volta-)Klammern unterhalb der Akkordsymbole"
31
32   texidoc = "
33 By adding the @code{Volta_engraver} to the relevant staff, volte can be
34 put under chords.
35
36 "
37   doctitle = "Volta below chords"
38 } % begin verbatim
39
40 \score {
41   <<
42     \chords {
43       c1
44       c1
45     }
46     \new Staff \with {
47       \consists "Volta_engraver"
48     }
49     {
50       \repeat volta 2 { c'1 }
51       \alternative { c' }
52     }
53   >>
54   \layout {
55     \context {
56       \Score
57       \remove "Volta_engraver"
58     }
59   }
60 }