]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-the-double-repeat-default-for-volte.ly
Allow user-defined predefined fretboard hash-table
[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.36"
6 \header {
7 %% Translation of GIT committish: 158658dc75b6f6553e77ff53119ac802eb91f50c
8   texidocfr = "LilyPond dispose de trois styles de barre différents
9 pour indiquer une succession de reprises.  Vous devez opter pour un
10   style par défaut, à l'aide de la propriété @code{doubleRepeatType}.
11
12 "
13
14   doctitlefr = "Succession de reprise et style de barre par défaut"
15
16
17   lsrtags = "repeats"
18   texidoc = "There are three different styles of double repeats for
19 volte, that can be set using @code{doubleRepeatType}."
20
21   doctitle = "Setting the double repeat default for volte"
22 } % begin verbatim
23
24
25
26 \relative c'' {
27   \repeat volta 1 { c1 }
28   \set Score.doubleRepeatType = #":|:"
29   \repeat volta 1 { c1 }
30   \set Score.doubleRepeatType = #":|.|:"
31   \repeat volta 1 { c1 }
32   \set Score.doubleRepeatType = #":|.:"
33   \repeat volta 1 { c1 }
34 }