]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-arpeggios-across-notes-in-different-voices.ly
Doc: run makelsr locally
[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.2"
8
9 \header {
10   lsrtags = "expressive-marks"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
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
36 voix@tie{}:
37
38 "
39   doctitlefr = "Arpège distribué sur plusieurs voix"
40
41
42   texidoc = "
43 An arpeggio can be drawn across notes in different voices on the same
44 staff if the @code{Span_arpeggio_engraver} is added to the @code{Staff}
45 context:
46
47 "
48   doctitle = "Creating arpeggios across notes in different voices"
49 } % begin verbatim
50
51
52 \new Staff \with {
53   \consists "Span_arpeggio_engraver"
54 }
55 \relative c' {
56   \set Staff.connectArpeggios = ##t
57   <<
58     { <e' g>4\arpeggio <d f> <d f>2 }
59     \\
60     { <d, f>2\arpeggio <g b>2 }
61   >>
62 }
63