blob: 267f1f708335871d44ffbf96e74bddeba7e54f06 (
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
50
51
52
53
54
55
56
57
58
59
60
|
% DO NOT EDIT this file manually; it is automatically
% generated from Documentation/snippets/new
% Make any changes in Documentation/snippets/new/
% and then run scripts/auxiliar/makelsr.py
%
% This file is in the public domain.
%% Note: this file works from version 2.15.24
\version "2.15.24"
\header {
%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
texidoces = "
Se pueden seleccionar dos métodos alternativos para la numeración de
compases, especiales para cuando hay repeticiones.
"
doctitlees = "Numeración de compases alternativa"
%% Translation of GIT committish: fc1ca638e0b5f66858b9b7a073ceefc1eccb3ed2
texidocde = "Zwei alternative Methoden können eingestellt werden,
die die Taktnummerierung beeinflussen, insbesondere bei Wiederholungen."
doctitlede = "Alternative Taktnummerierung"
%% Translation of GIT committish: f5cfaf8ef4ac347702f554af0944ef0d8396e73a
texidocfr = "
Deux méthodes alternatives vous permettent de gérer la numérotation des
mesures en cas de reprises.
"
doctitlefr = "Numérotation des mesures et alternatives"
= "editorial-annotations, staff-notation, tweaks-and-overrides"
= "Two alternative methods for bar numbering can be set,
especially for when using repeated music."
= "Alternative bar numbering"
} % begin verbatim
\relative c'{
\set Score.alternativeNumberingStyle = #'numbers
\repeat volta 3 { c4 d e f | }
\alternative {
{ c4 d e f | c2 d \break }
{ f4 g a b | f4 g a b | f2 a | \break }
{ c4 d e f | c2 d }
}
c1 \break
\set Score.alternativeNumberingStyle = #'numbers-with-letters
\repeat volta 3 { c,4 d e f | }
\alternative {
{ c4 d e f | c2 d \break }
{ f4 g a b | f4 g a b | f2 a | \break }
{ c4 d e f | c2 d }
}
c1
}
|