]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-ties-with-arpeggios.ly
Local updates to LSR July 2012
[lilypond.git] / Documentation / snippets / using-ties-with-arpeggios.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 = "rhythms"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13  doctitlees = "Uso de ligaduras en los arpegios"
14  texidoces = "
15 En ocasiones se usan ligaduras de unión para escribir los arpegios.
16 En este caso, las dos notas ligadas no tienen que ser consecutivas.
17 Esto se puede conseguir estableciendo la propiedad
18 @code{tieWaitForNote} al valor @code{#t}.  La misma funcionalidad
19 es de utilidad, por ejemplo, para ligar un trémolo a un acorde, pero
20 en principio también se puede usar para notas normales consecutivas.
21
22 "
23
24
25 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
26  texidocde = "
27  Überbindungen werden teilweise benutzt, um Arpeggios zu notieren.  In
28  diesem Fall stehen die übergebundenen Noten nicht unbedingt hintereinander.
29 Das Verhalten kann erreicht werden, indem die @code{tieWaitForNote}-Eigenschaft
30 auf @code{#t} gesetzt wird.  Diese Funktion ist auch sinnvoll, um etwa
31 ein Tremolo mit einem Akkord zu überbinden, kann aber prinzipiell auch
32 für normale Überbindungen eingesetzt werden
33 "
34   doctitlede = "Überbindungen für Arpeggio benutzen"
35
36
37
38 %% Translation of GIT committish: d5307870fe0ad47904daba73792c7e17b813737f
39   texidocfr = "
40 Les liaisons de tenue servent parfois à rendre un accord arpégé.  Dans
41 ce cas, les notes liées ne sont pas toutes consécutives. Il faut alors
42 assigner à la propriété @code{tieWaitForNote} la valeur @code{#t}
43 (@emph{true} pour « vrai »).  Cette même méthode peut servir, par
44 exemple, à lier un trémolo à un accord.
45
46 "
47   doctitlefr = "Liaison de tenue et arpège"
48
49   texidoc = "
50 Ties are sometimes used to write out arpeggios.  In this case, two tied
51 notes need not be consecutive.  This can be achieved by setting the
52 @code{tieWaitForNote} property to @code{#t}.  The same feature is also
53 useful, for example, to tie a tremolo to a chord, but in principle, it
54 can also be used for ordinary consecutive notes.
55
56 "
57   doctitle = "Using ties with arpeggios"
58 } % begin verbatim
59
60
61 \relative c' {
62   \set tieWaitForNote = ##t
63   \grace { c16[ ~ e ~ g] ~ } <c, e g>2
64   \repeat tremolo 8 { c32 ~ c' ~ } <c c,>1
65   e8 ~ c ~ a ~ f ~ <e' c a f>2
66   \tieUp
67   c8 ~ a
68   \tieDown
69   \tieDotted
70   g8 ~ c g2
71 }
72