]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/altering-the-length-of-beamed-stems.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / Documentation / snippets / altering-the-length-of-beamed-stems.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.39"
5
6 \header {
7   lsrtags = "pitches, tweaks-and-overrides"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
10   texidoces = "
11 Se puede variar la longitud de las plicas de las figuras unidas por
12 una barra mediante la sobreescritura de la propiedad
13 @code{beamed-lengths} de los detalles (@code{details}) del objeto
14 @code{Stem}.  Si se utiliza un solo valor como argumento, la longitud
15 se aplica a todas las plicas.  Si se usan varios argumentos, el
16 primero se aplica a las corcheas, el sgundo a las semicorcheas y así
17 sucesivamente.  El último argumento también se aplica a todas las
18 figuras que son mmás cortas que la longitud de la figura del último
19 argumento.  También se pueden usar argumentos no enteros.
20
21 "
22
23 doctitlees = "Alterar la longitud de las plicas unidas por una barra"
24
25
26
27   texidoc = "
28 Stem lengths on beamed notes can be varied by overriding the
29 @code{beamed-lengths} property of the @code{details} of the
30 @code{Stem}.  If a single value is used as an argument, the length
31 applies to all stems.  When multiple arguments are used, the first
32 applies to eighth notes, the second to sixteenth notes and so on.  The
33 final argument also applies to all notes shorter than the note length
34 of the final argument.  Non-integer arguments may also be used.
35
36 "
37   doctitle = "Altering the length of beamed stems"
38 } % begin verbatim
39
40 \relative c'' {
41   \override Stem #'details #'beamed-lengths = #'(2)
42   a8[ a] a16[ a] a32[ a]
43   \override Stem #'details #'beamed-lengths = #'(8 10 12)
44   a8[ a] a16[ a] a32[ a] r8
45   \override Stem #'details #'beamed-lengths = #'(8)
46   a8[ a]
47   \override Stem #'details #'beamed-lengths = #'(8.5)
48   a8[ a]
49   \revert Stem #'details
50   a8[ a] a16[ a] a32[ a]
51 }
52