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