]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-the-double-repeat-default-for-volte.ly
Local updates to LSR July 2012
[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: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: 28097cf54698db364afeb75658e4c8e0e0ccd716
25   texidocfr = "
26 LilyPond dispose de trois différents styles de barre 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   texidoc = "
34 There are three different styles of double repeats for volte, that can
35 be set using @code{doubleRepeatType}.
36
37 "
38   doctitle = "Setting the double repeat default for volte"
39 } % begin verbatim
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 }