]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-the-double-repeat-default-for-volte.ly
b67be305376700eb1c974ffa58c7f4f1e1738040
[lilypond.git] / Documentation / snippets / setting-the-double-repeat-default-for-volte.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.14.2"
8
9 \header {
10   lsrtags = "repeats"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13
14   texidoces = "
15
16 Existen tres estilos distintos de repeticiones dobles para la primera
17 y segunda vez, que se pueden ajustar utilizando
18 @code{doubleRepeatType}.
19
20 "
21
22   doctitlees = "Establecer el tipo de repetición doble predeterminado para la primera y segunda vez"
23
24 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
25   texidocfr = "
26 LilyPond dispose de trois styles de barre différents pour indiquer une
27 succession de reprises.  Vous devez opter pour un style par défaut, à
28 l'aide de la propriété @code{doubleRepeatType}.
29
30 "
31   doctitlefr = "Succession de reprise et style de barre par défaut"
32
33
34   texidoc = "
35 There are three different styles of double repeats for volte, that can
36 be set using @code{doubleRepeatType}.
37
38 "
39   doctitle = "Setting the double repeat default for volte"
40 } % begin verbatim
41
42 \relative c'' {
43   \repeat volta 1 { c1 }
44   \set Score.doubleRepeatType = #":|:"
45   \repeat volta 1 { c1 }
46   \set Score.doubleRepeatType = #":|.|:"
47   \repeat volta 1 { c1 }
48   \set Score.doubleRepeatType = #":|.:"
49   \repeat volta 1 { c1 }
50 }