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