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