]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/reverting-default-beam-endings.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / reverting-default-beam-endings.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
10 \header {
11 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
12   texidoces = "
13 Para tipografiar las barras agrupadas en la forma @code{3-4-3-2} sólo
14 es necesario modificar la estructura de pulsos:
15
16 "
17   doctitlees = "Alteración de los finales de barra predeterminados"
18
19
20
21 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
22   texidocde = "
23 Um Balken im 12/8-Takt als @code{3-4-3-2} zu gruppieren, muss man zuerst die
24 Standardwerte für die Balken im 12/8-Takt rückgängig machen und dann die neuen
25 Werte setzen:
26
27 "
28   doctitlede = "Standard-Balkenwerte rückgängig machen"
29
30
31
32 %% Translation of GIT committish: 548076f550a2b7fb09f1260f0e5e2bb028ad396c
33   texidocfr = "
34 Pour obtenir des ligatures en groupes de @code{3-4-3-2} croches, dans
35 une mesure à 12/8, il faudra préalablement annuler les réglages par
36 défaut relatifs à 12/8, puis ajouter nos propres règles :
37
38 "
39   doctitlefr = "Annulation des règles de ligature par défaut"
40
41   lsrtags = "rhythms"
42   texidoc = "
43 To typeset beams grouped @code{3-4-3-2} one need only change the
44 beat structure:
45 "
46   doctitle = "Reverting default beam endings"
47 } % begin verbatim
48
49
50 \relative c'' {
51   \time 12/8
52
53   % Default beaming
54   a8 a a a a a a a a a a a
55
56   % Set new values for beam endings
57   \set Score.beatStructure = #'(3 4 3 2)
58   a8 a a a a a a a a a a a
59 }