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