]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/percent-repeat-counter.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[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.16.0"
8
9 \header {
10   lsrtags = "repeats"
11
12   texidoc = "
13 Measure repeats of more than two repeats can get a counter when the
14 convenient property is switched, as shown in this example:
15
16 "
17   doctitle = "Percent repeat counter"
18 } % begin verbatim
19
20
21 \relative c'' {
22   \set countPercentRepeats = ##t
23   \repeat percent 4 { c1 }
24 }