]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/using-ties-with-arpeggios.ly
Imported Upstream version 2.14.2
[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.0"
8
9 \header {
10   lsrtags = "rhythms"
11
12 %% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
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: 4da4307e396243a5a3bc33a0c2753acac92cb685
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 @qq{vrai}).  Cette même méthode peut servir, par
44 exemple, à lier un trémolo à un accord.
45 "
46   doctitlefr = "Liaison de tenue et arpège"
47
48   texidoc = "
49 Ties are sometimes used to write out arpeggios.  In this case, two tied
50 notes need not be consecutive.  This can be achieved by setting the
51 @code{tieWaitForNote} property to @code{#t}.  The same feature is also
52 useful, for example, to tie a tremolo to a chord, but in principle, it
53 can also be used for ordinary consecutive notes.
54
55 "
56   doctitle = "Using ties with arpeggios"
57 } % begin verbatim
58
59 \relative c' {
60   \set tieWaitForNote = ##t
61   \grace { c16[ ~ e ~ g] ~ } <c, e g>2
62   \repeat tremolo 8 { c32 ~ c' ~ } <c c,>1
63   e8 ~ c ~ a ~ f ~ <e' c a f>2
64   \tieUp
65   c8 ~ a
66   \tieDown
67   \tieDotted
68   g8 ~ c g2
69 }
70