]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-the-double-repeat-default-for-volte.ly
Doc: 989 - tidy up last checkin
[lilypond.git] / Documentation / snippets / setting-the-double-repeat-default-for-volte.ly
1 % Do not edit this file; it is automatically
2 % generated from Documentation/snippets/new
3 % This file is in the public domain.
4 %% Note: this file works from version 2.13.26
5 \version "2.13.26"
6 \header {
7   lsrtags = "repeats"
8   texidoc = "There are three different styles of double repeats for
9 volte, that can be set using @code{doubleRepeatType}."
10
11   doctitle = "Setting the double repeat default for volte"
12 }
13
14
15
16 \relative c'' {
17   \repeat volta 1 { c1 }
18   \set Score.doubleRepeatType = #":|:"
19   \repeat volta 1 { c1 }
20   \set Score.doubleRepeatType = #":|.|:"
21   \repeat volta 1 { c1 }
22   \set Score.doubleRepeatType = #":|.:"
23   \repeat volta 1 { c1 }
24 }