]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/altering-the-length-of-beamed-stems.ly
Doc: run makelsr locally
[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 = "pitches, tweaks-and-overrides"
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   texidoc = "
31 Stem lengths on beamed notes can be varied by overriding the
32 @code{beamed-lengths} property of the @code{details} of the
33 @code{Stem}.  If a single value is used as an argument, the length
34 applies to all stems.  When multiple arguments are used, the first
35 applies to eighth notes, the second to sixteenth notes and so on.  The
36 final argument also applies to all notes shorter than the note length
37 of the final argument.  Non-integer arguments may also be used.
38
39 "
40   doctitle = "Altering the length of beamed stems"
41 } % begin verbatim
42
43
44 \relative c'' {
45   \override Stem #'(details beamed-lengths) = #'(2)
46   a8[ a] a16[ a] a32[ a]
47   \override Stem #'(details beamed-lengths) = #'(8 10 12)
48   a8[ a] a16[ a] a32[ a] r8
49   \override Stem #'(details beamed-lengths) = #'(8)
50   a8[ a]
51   \override Stem #'(details beamed-lengths) = #'(8.5)
52   a8[ a]
53   \revert Stem #'details
54   a8[ a] a16[ a] a32[ a] r16
55 }
56