]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/alternative-bar-numbering.ly
0184686e615dc1fe67ad686b78e646ef3c65cddf
[lilypond.git] / Documentation / snippets / alternative-bar-numbering.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.15.24
8 \version "2.15.24"
9
10 \header {
11 %% Translation of GIT committish: ea0b270e14781707ab52683acddf9302bbe337f3
12
13   texidoces = "
14 Se pueden seleccionar dos métodos alternativos para la numeración de
15 compases, especiales para cuando hay repeticiones.
16
17 "
18   doctitlees = "Numeración de compases alternativa"
19
20
21 %% Translation of GIT committish: fc1ca638e0b5f66858b9b7a073ceefc1eccb3ed2
22
23   texidocde = "Zwei alternative Methoden können eingestellt werden,
24   die die Taktnummerierung beeinflussen, insbesondere bei Wiederholungen."
25
26   doctitlede = "Alternative Taktnummerierung"
27
28 %% Translation of GIT committish: af3df3b7c6e062635bdccb739be41962969806a0
29   texidocfr = "
30 Deux méthodes alternatives vous permettent de gérer la numérotation ds
31 mesures en cas de reprises.
32
33 "
34   doctitlefr = "Numérotation des mesures et alternatives"
35
36   lsrtags = "editorial-annotations, staff-notation, tweaks-and-overrides"
37   texidoc = "Two alternative methods for bar numbering can be set,
38   especially for when using repeated music."
39   doctitle = "Alternative bar numbering"
40 } % begin verbatim
41
42
43 \relative c'{
44   \set Score.alternativeNumberingStyle = #'numbers
45   \repeat volta 3 { c4 d e f | }
46     \alternative {
47       { c4 d e f | c2 d \break }
48       { f4 g a b | f4 g a b | f2 a | \break }
49       { c4 d e f | c2 d }
50     }
51   c1 \break
52   \set Score.alternativeNumberingStyle = #'numbers-with-letters
53   \repeat volta 3 { c,4 d e f | }
54     \alternative {
55       { c4 d e f | c2 d \break }
56       { f4 g a b | f4 g a b | f2 a | \break }
57       { c4 d e f | c2 d }
58     }
59   c1
60 }