]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-arpeggios-across-notes-in-different-voices.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / creating-arpeggios-across-notes-in-different-voices.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 = "expressive-marks"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13   texidoces = "
14 Se puede trazar un símbolo de arpegio entre notas de distintas
15 voces que están sobre el mismo pentagrama si el grabador
16 @code{Span_arpeggio_engraver} se traslada al contexto de
17 @code{Staff} context:
18
19 "
20   doctitlees = "Crear arpegios entre notas de voces distintas"
21
22
23 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
24 texidocde = "
25 Ein Arpeggio kann zwischen Noten aus unterschiedlichen Stimmen auf demselben
26 System gezogen werden, wenn der @code{Span_arpeggio_engraver} in den
27 @code{Staff}-Kontext verschoben wird:
28
29 "
30   doctitlede = "Arpeggios zwischen unterschiedlichen Stimmen erzeugen"
31
32 %% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
33   texidocfr = "
34 Affecter le graveur @code{Span_arpeggio_engraver} au contexte de la
35 portée (@code{Staff}) permet de distribuer un arpège sur plusieurs voix :
36
37 "
38   doctitlefr = "Arpège distribué sur plusieurs voix"
39
40
41   texidoc = "
42 An arpeggio can be drawn across notes in different voices on the same
43 staff if the @code{Span_arpeggio_engraver} is added to the @code{Staff}
44 context:
45
46 "
47   doctitle = "Creating arpeggios across notes in different voices"
48 } % begin verbatim
49
50 \new Staff \with {
51   \consists "Span_arpeggio_engraver"
52 }
53 \relative c' {
54   \set Staff.connectArpeggios = ##t
55   <<
56     { <e' g>4\arpeggio <d f> <d f>2 }
57     \\
58     { <d, f>2\arpeggio <g b>2 }
59   >>
60 }
61