]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/percent-repeat-counter.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / percent-repeat-counter.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.4"
5
6 \header {
7   lsrtags = "repeats"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10   texidoces = "
11 Las repeticiones de compases completos mayores de dos repeticiones
12 pueden llevar un contador si se activa la propiedad adecuada, como se
13 ve en este ejemplo:
14
15 "
16   doctitlees = "Percent repeat counter"
17
18 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
19   texidocde = "
20 Ganztaktwiederholungen mit mehr als zwei Wiederholungen erhalten einen
21 Zähler, wenn man die entsprechende Eigenschaft einsetzt:
22
23 "
24   doctitlede = "Prozent-Wiederholungen zählen"
25 %% Translation of GIT committish: e98b2d804c2a136edfa28adc894bb584f676c884
26   texidocfr = "
27 Les répétitions de plus de 2 mesures sont surmontées d'un compteur,
28 si l'on active la propriété @code{countPercentRepeats} comme le montre
29 l'exemple suivant :
30
31 "
32   doctitlefr = "Compteur de répétition en pourcent"
33
34
35   texidoc = "
36 Measure repeats of more than two repeats can get a counter when the
37 convenient property is switched, as shown in this example:
38
39 "
40   doctitle = "Percent repeat counter"
41 } % begin verbatim
42
43 \relative c'' {
44   \set countPercentRepeats = ##t
45   \repeat percent 4 { c1 }
46 }
47