]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/strict-beat-beaming.ly
a8d971ca62bc082af249830532d99b10c573389f
[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: ea0b270e14781707ab52683acddf9302bbe337f3
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: af3df3b7c6e062635bdccb739be41962969806a0
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
42   doctitlefr = "Ligature à la pulsation"
43
44   texidoc = "
45 Beamlets can be set to point in the direction of the beat to which they
46 belong.  The first beam avoids sticking out flags (the default);
47 the second beam strictly follows the beat.
48 "
49
50   doctitle = "Strict beat beaming"
51
52   lsrtags = "rhythms"
53 } % begin verbatim
54
55
56
57 \relative c'' {
58   \time 6/8
59   a8. a16 a a
60   \set strictBeatBeaming = ##t
61   a8. a16 a a
62 }