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