]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/percent-repeat-count-visibility.ly
lilypond-book robustness: ensure EOL at the end of @verbatim
[lilypond.git] / input / lsr / percent-repeat-count-visibility.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, tweaks-and-overrides"
7
8 %% Translation of GIT committish: 43774ddb81b9017802da04ba2862cae4586935b2
9   texidoces = "
10 Se pueden mostrar los contadores de las repeticiones del tipo
11 porcentaje a intervalos regulares mediante el establecimiento de
12 la propiedad de contexto @code{repeatCountVisibility}.
13
14 "
15   doctitlees = "Visibilidad del contador de repeticiones de tipo porcentaje"
16
17 %% Translation of GIT committish: 0364058d18eb91836302a567c18289209d6e9706
18   texidocde = "
19 Prozentwiederholungszähler können in regelmäßigen Intervallen angezeigt
20 werden, indem man die Eigenschaft @code{repeatCountVisibility} beeinflusst.
21 "
22   doctitlede = "Sichtbarkeit von Prozent-Wiederholungen"
23
24   texidoc = "
25 Percent repeat counters can be shown at regular intervals by setting
26 the context property @code{repeatCountVisibility}.
27
28 "
29   doctitle = "Percent repeat count visibility"
30 } % begin verbatim
31
32 \relative c'' {
33   \set countPercentRepeats = ##t
34   \set repeatCountVisibility = #(every-nth-repeat-count-visible 5)
35   \repeat percent 10 { c1 } \break
36   \set repeatCountVisibility = #(every-nth-repeat-count-visible 2)
37   \repeat percent 6 { c1 d1 }
38 }