]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/percent-repeat-counter.ly
556df5523a827f4b46923c64805c68f44346374d
[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.16"
5
6 \header {
7   lsrtags = "repeats"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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: a5bde6d51a5c88e952d95ae36c61a5efc22ba441
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