]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/volta-below-chords.ly
Merge branch 'lilypond/translation' into staging
[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 %% Translation of GIT committish: 
11   texidocfr = "
12 L'ajout du @code{Volta_engraver} à la bonne portée permet d'imprimer les
13 crochets de reprise entre les chiffrages et la portée.
14
15 "
16   doctitlefr = "Crochet de reprise sous les chiffrages d'accord"
17
18   lsrtags = "repeats, staff-notation, chords"
19
20
21
22
23 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
24   texidoces = "
25 Mediante la adición del grabador @code{Volta_engraver} al
26 pentagrama pertinente, se pueden poner los corchetes de primera y
27 segunda vez debajo de los acordes.
28
29 "
30   doctitlees = "Corchetes de primera y segunda vez debajo de los acordes"
31
32
33
34 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
35   texidocde = "
36 Indem man den @code{Volta_engraver} zu dem entsprechenden Notensystem
37 hinzufügt, können Wiederholungsklammern unterhalb der Akkorde gesetzt
38 werden.
39
40 "
41   doctitlede = "Wiederholungs-(Volta-)Klammern unterhalb der Akkordsymbole"
42
43   texidoc = "
44 By adding the @code{Volta_engraver} to the relevant staff, volte can be
45 put under chords.
46
47 "
48   doctitle = "Volta below chords"
49 } % begin verbatim
50
51 \score {
52   <<
53     \chords {
54       c1
55       c1
56     }
57     \new Staff \with {
58       \consists "Volta_engraver"
59     }
60     {
61       \repeat volta 2 { c'1 }
62       \alternative { c' }
63     }
64   >>
65   \layout {
66     \context {
67       \Score
68       \remove "Volta_engraver"
69     }
70   }
71 }