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