]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/altering-the-length-of-beamed-stems.ly
2f55e259c5766c93c36f2bef257f397a14a314e1
[lilypond.git] / Documentation / snippets / altering-the-length-of-beamed-stems.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 = "tweaks-and-overrides, pitches"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 Se puede variar la longitud de las plicas de las figuras unidas por
15 una barra mediante la sobreescritura de la propiedad
16 @code{beamed-lengths} de los detalles (@code{details}) del objeto
17 @code{Stem}.  Si se utiliza un solo valor como argumento, la longitud
18 se aplica a todas las plicas.  Si se usan varios argumentos, el
19 primero se aplica a las corcheas, el sgundo a las semicorcheas y así
20 sucesivamente.  El último argumento también se aplica a todas las
21 figuras que son mmás cortas que la longitud de la figura del último
22 argumento.  También se pueden usar argumentos no enteros.
23
24 "
25
26 doctitlees = "Alterar la longitud de las plicas unidas por una barra"
27
28
29
30 %% Translation of GIT committish: 1cda7b7b8219cb97399b8e7b56c1115aaf82c002
31   texidocfr = "
32 La hauteur de hampe des notes ligaturées est gérée par la sous-propriété
33 @code{beamed-lengths} des @code{details} de l'objet @code{Stem}.
34 Lorsqu'elle ne comporte qu'une seule valeur, cette hauteur s'appliquera
35 à toutes les hampes.  En présence de plusieurs arguments, le premier
36 affectera les crochet, le second les doubles croches, et ainsi de suite.
37 Le dernier argument s'appliquera aussi aux notes de plus courte durée.
38 Les arguments peuvent être des valeurs décimales.
39
40 "
41   doctitlefr = "Modification de la hauteur de hampes ligaturées"
42
43   texidoc = "
44 Stem lengths on beamed notes can be varied by overriding the
45 @code{beamed-lengths} property of the @code{details} of the
46 @code{Stem}.  If a single value is used as an argument, the length
47 applies to all stems.  When multiple arguments are used, the first
48 applies to eighth notes, the second to sixteenth notes and so on.  The
49 final argument also applies to all notes shorter than the note length
50 of the final argument.  Non-integer arguments may also be used.
51
52 "
53   doctitle = "Altering the length of beamed stems"
54 } % begin verbatim
55
56
57 \relative c'' {
58   \override Stem #'(details beamed-lengths) = #'(2)
59   a8[ a] a16[ a] a32[ a]
60   \override Stem #'(details beamed-lengths) = #'(8 10 12)
61   a8[ a] a16[ a] a32[ a] r8
62   \override Stem #'(details beamed-lengths) = #'(8)
63   a8[ a]
64   \override Stem #'(details beamed-lengths) = #'(8.5)
65   a8[ a]
66   \revert Stem #'details
67   a8[ a] a16[ a] a32[ a] r16
68 }
69