]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/strict-beat-beaming.ly
95ecfb75c222d5c61ff1d58dfedd318ac5105a84
[lilypond.git] / Documentation / snippets / strict-beat-beaming.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.28
8 \version "2.15.28"
9
10 \header {
11 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
12   texidoces = "
13 Se puede hacer que las barras secundarias apunten en la dirección del
14 pulso o fracción a que pertenecen.  La primera barra evita los
15 corchetes sueltos (que es el comportamiento predeterminado); la
16 segunda barra sigue el pulso o fracción estrictamente.
17
18 "
19   doctitlees = "Barras que se atienen al pulso estrictamente"
20
21 %% Translation of GIT committish: fc1ca638e0b5f66858b9b7a073ceefc1eccb3ed2
22
23   texidocde = "
24 Sekundäre Balken können in die Richtung gesetzt werden, die ihrer rhythmischen
25 Zugehörigkeit entspricht.  Der erste Balken ist zusammengefasst (Standard),
26 der zweite Sechszehntelbalken zeigt den Taktschlag an.
27 "
28
29   doctitlede = "Bebalkung nach Taktschlag"
30
31
32
33 %% Translation of GIT committish: 28097cf54698db364afeb75658e4c8e0e0ccd716
34   texidocfr = "
35 Une sous-ligature tronquée peut pointer en direction de la pulsation à
36 laquelle elle se rattache.  Dans l'exemple suivant, la première ligature
37 évite toute troncature (comportement par défaut), alors que la deuxième
38 respecte rigoureusement la pulsation.
39
40 "
41   doctitlefr = "Ligature à la pulsation"
42
43   texidoc = "
44 Beamlets can be set to point in the direction of the beat to which they
45 belong.  The first beam avoids sticking out flags (the default);
46 the second beam strictly follows the beat.
47 "
48
49   doctitle = "Strict beat beaming"
50
51   lsrtags = "rhythms"
52 } % begin verbatim
53
54
55
56 \relative c'' {
57   \time 6/8
58   a8. a16 a a
59   \set strictBeatBeaming = ##t
60   a8. a16 a a
61 }