]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/set-double-repeat-default-volta.ly
in html->texi conversion, an unexpected ";" was left
[lilypond.git] / Documentation / snippets / set-double-repeat-default-volta.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 % Do not edit this file; it is automatically
6 % generated from Documentation/snippets/new
7 % This file is in the public domain.
8 %% Note: this file works from version 2.13.26
9 \version "2.13.26"
10 \header {
11   lsrtags = "repeats"
12   texidoc = "There are three different styles of double repeats for
13 volte, that can be set using @code{doubleRepeatType}."
14
15   doctitle = "set-double-repeat-volta.ly"
16 } % begin verbatim
17
18
19 \relative c'' {
20   \repeat volta 1 { c1 } % begin verbatim
21
22   \set Score.doubleRepeatType = #":|:"
23   \repeat volta 1 { c1 } % begin verbatim
24
25   \set Score.doubleRepeatType = #":|.|:"
26   \repeat volta 1 { c1 }
27   \set Score.doubleRepeatType = #":|.:"
28   \repeat volta 1 { c1 }
29 }