]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/percent-repeat-counter.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / snippets / percent-repeat-counter.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "repeats"
7
8 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
9   texidoces = "
10 Las repeticiones de compases completos mayores de dos repeticiones
11 pueden llevar un contador si se activa la propiedad adecuada, como se
12 ve en este ejemplo:
13
14 "
15   doctitlees = "Percent repeat counter"
16
17 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
18   texidocde = "
19 Ganztaktwiederholungen mit mehr als zwei Wiederholungen erhalten einen
20 Zähler, wenn man die entsprechende Eigenschaft einsetzt:
21
22 "
23   doctitlede = "Prozent-Wiederholungen zählen"
24
25   texidoc = "
26 Measure repeats of more than two repeats can get a counter when the
27 convenient property is switched, as shown in this example:
28
29 "
30   doctitle = "Percent repeat counter"
31 } % begin verbatim
32
33 \relative c'' {
34   \set countPercentRepeats = ##t
35   \repeat percent 4 { c1 }
36 }
37