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