]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/percent-repeat-counter.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "repeats"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
10   texidoces = "
11 Las repeticiones de compases completos de más 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 = "Contador de repeticiones de tipo porcentaje"
17
18
19 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
20   texidocde = "
21 Ganztaktwiederholungen mit mehr als zwei Wiederholungen erhalten einen
22 Zähler, wenn man die entsprechende Eigenschaft einsetzt:
23
24 "
25   doctitlede = "Prozent-Wiederholungen zählen"
26
27 %% Translation of GIT committish: a5bde6d51a5c88e952d95ae36c61a5efc22ba441
28   texidocfr = "
29 Les répétitions de plus de 2 mesures sont surmontées d'un compteur,
30 si l'on active la propriété @code{countPercentRepeats} comme le montre
31 l'exemple suivant :
32
33 "
34   doctitlefr = "Compteur de répétition en pourcent"
35
36
37   texidoc = "
38 Measure repeats of more than two repeats can get a counter when the
39 convenient property is switched, as shown in this example:
40
41 "
42   doctitle = "Percent repeat counter"
43 } % begin verbatim
44
45 \relative c'' {
46   \set countPercentRepeats = ##t
47   \repeat percent 4 { c1 }
48 }
49