X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fcreating-arpeggios-across-notes-in-different-voices.ly;fp=Documentation%2Fsnippets%2Fcreating-arpeggios-across-notes-in-different-voices.ly;h=555c26e5227dc0c120bdd8779e61b75ee1240951;hb=941dff9d2a67080e0dd8474f1e70f0c72ace6424;hp=0000000000000000000000000000000000000000;hpb=5a22d6233a39d3164e1ca043244794c268be4ad0;p=lilypond.git diff --git a/Documentation/snippets/creating-arpeggios-across-notes-in-different-voices.ly b/Documentation/snippets/creating-arpeggios-across-notes-in-different-voices.ly new file mode 100644 index 0000000000..555c26e522 --- /dev/null +++ b/Documentation/snippets/creating-arpeggios-across-notes-in-different-voices.ly @@ -0,0 +1,61 @@ +%% DO NOT EDIT this file manually; it is automatically +%% generated from LSR http://lsr.dsi.unimi.it +%% Make any changes in LSR itself, or in Documentation/snippets/new/ , +%% and then run scripts/auxiliar/makelsr.py +%% +%% This file is in the public domain. +\version "2.14.0" + +\header { + lsrtags = "expressive-marks" + +%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c + texidoces = " +Se puede trazar un símbolo de arpegio entre notas de distintas +voces que están sobre el mismo pentagrama si el grabador +@code{Span_arpeggio_engraver} se traslada al contexto de +@code{Staff} context: + +" + doctitlees = "Crear arpegios entre notas de voces distintas" + + +%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 +texidocde = " +Ein Arpeggio kann zwischen Noten aus unterschiedlichen Stimmen auf demselben +System gezogen werden, wenn der @code{Span_arpeggio_engraver} in den +@code{Staff}-Kontext verschoben wird: + +" + doctitlede = "Arpeggios zwischen unterschiedlichen Stimmen erzeugen" + +%% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20 + texidocfr = " +Affecter le graveur @code{Span_arpeggio_engraver} au contexte de la +portée (@code{Staff}) permet de distribuer un arpège sur plusieurs voix : + +" + doctitlefr = "Arpège distribué sur plusieurs voix" + + + texidoc = " +An arpeggio can be drawn across notes in different voices on the same +staff if the @code{Span_arpeggio_engraver} is added to the @code{Staff} +context: + +" + doctitle = "Creating arpeggios across notes in different voices" +} % begin verbatim + +\new Staff \with { + \consists "Span_arpeggio_engraver" +} +\relative c' { + \set Staff.connectArpeggios = ##t + << + { 4\arpeggio 2 } + \\ + { 2\arpeggio 2 } + >> +} +