blob: 07b34fb043705d92a22527745467762fb9081767 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
%% DO NOT EDIT this file manually; it is automatically
%% generated from LSR http://lsr.dsi.unimi.it
%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
%% and then run scripts/auxiliar/makelsr.py
%%
%% This file is in the public domain.
\version "2.14.2"
\header {
= "repeats"
%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
texidoces = "
Existen tres estilos distintos de repeticiones dobles para la primera
y segunda vez, que se pueden ajustar utilizando
@code{doubleRepeatType}.
"
doctitlees = "Establecer el tipo de repetición doble predeterminado para la primera y segunda vez"
%% Translation of GIT committish: 28097cf54698db364afeb75658e4c8e0e0ccd716
texidocfr = "
LilyPond dispose de trois différents styles de barre pour indiquer une
succession de reprises. Vous devez opter pour un style par défaut, à
l'aide de la propriété @code{doubleRepeatType}.
"
doctitlefr = "Succession de reprise et style de barre par défaut"
= "
There are three different styles of double repeats for volte, that can
be set using @code{doubleRepeatType}.
"
= "Setting the double repeat default for volte"
} % begin verbatim
\relative c'' {
\repeat volta 1 { c1 }
\set Score.doubleRepeatType = #":|:"
\repeat volta 1 { c1 }
\set Score.doubleRepeatType = #":|.|:"
\repeat volta 1 { c1 }
\set Score.doubleRepeatType = #":|.:"
\repeat volta 1 { c1 }
}
|