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