]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-beam-knee-gap.ly
590dded435803b745dcfbb64063268f373c4fe1d
[lilypond.git] / Documentation / snippets / changing-beam-knee-gap.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 = "rhythms"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 Se insertan automáticamente barras en ángulo cuando se detecta un
15 intervalo muy grande entre las notas.  Se puede hacer un ajuste
16 fino de este comportamiento a través de la propiedad
17 @code{auto-knee-gap}.  Se traza una barra doblada si el salto es
18 mayor que el valor de @code{auto-knee-gap} más el ancho del objeto
19 barra (que depende de la duración de las notas y de la inclinación
20 de la barra).  De forma predeterminada @code{auto-knee-gap} está
21 establecido a 5.5 espacios de pentagrama.
22
23 "
24   doctitlees = "Cambiar el salto de las barras en ángulo"
25
26
27 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
28 texidocde = "
29 Balken mit Hälsen in unterschiedliche Richtungen werden automatisch
30 erstellt, wenn ein großer Sprung zwischen Tonhöhen gefunden wird.  Dieses
31 Verhalten kann durch die @code{auto-knee-gap}-Eigenschaft beeinflusst
32 werden.  Ein derartiger Knie-Balken wird erstellt, wenn der Abstand größer
33 ist als der Wert von @code{auto-knee-gap} plus der Dicke des Balkens
34 (was von der Notendauer und der Neigung des Balkens abhängt).  Der
35 Standardwert von @code{auto-knee-gap} ist 5.5 Notensystemabstände.
36
37 "
38   doctitlede = "Balken für weit auseinander liegende Noten ändern"
39
40
41
42 %% Translation of GIT committish: f5cfaf8ef4ac347702f554af0944ef0d8396e73a
43   texidocfr = "
44 LilyPond insère automatiquement des ligatures coudées -- certaines
45 hampes vers le haut, d'autres vers le bas -- lorsqu'il détecte un
46 intervalle important entre des têtes de notes.  Ce comportement peut
47 être changé par l'intermédiaire de l'objet @code{auto-knee-gap} --
48 défini par défaut à @samp{5,5} espace, plus la largeur et la pente de la
49 ligature en question.
50
51 "
52   doctitlefr = "Ligature et directions de hampe inversées"
53
54   texidoc = "
55 Kneed beams are inserted automatically when a large gap is detected
56 between the note heads.  This behavior can be tuned through the
57 @code{auto-knee-gap} property.  A kneed beam is drawn if the gap is
58 larger than the value of @code{auto-knee-gap} plus the width of the
59 beam object  (which depends on the duration of the notes and the slope
60 of the beam). By default @code{auto-knee-gap} is set to 5.5 staff
61 spaces.
62
63 "
64   doctitle = "Changing beam knee gap"
65 } % begin verbatim
66
67
68 {
69   f8 f''8 f8 f''8
70   \override Beam #'auto-knee-gap = #6
71   f8 f''8 f8 f''8
72 }
73