X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fcreating-arpeggios-across-notes-in-different-voices.ly;h=6fccfe610100c9ea0bcf3d2b8c98b4add733c8a6;hb=31ae5880931a923a88c3a12a66d113436dfb97af;hp=c55417827de9ea45a1999e8de3e48ce888288252;hpb=b3f0c2f6c352a850f03dc44a947776199eb3fa0b;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 index c55417827d..6fccfe6101 100644 --- a/Documentation/snippets/creating-arpeggios-across-notes-in-different-voices.ly +++ b/Documentation/snippets/creating-arpeggios-across-notes-in-different-voices.ly @@ -1,12 +1,15 @@ -%% Do not edit this file; it is automatically +%% 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.13.4" +\version "2.14.2" \header { lsrtags = "expressive-marks" -%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca +%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa texidoces = " Se puede trazar un símbolo de arpegio entre notas de distintas voces que están sobre el mismo pentagrama si el grabador @@ -16,18 +19,21 @@ voces que están sobre el mismo pentagrama si el grabador " doctitlees = "Crear arpegios entre notas de voces distintas" -%% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d + +%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 texidocde = " -Ein Arpeggio kann zwischen Noten aus unterschidlichen Stimmen auf demselben +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: ae814f45737bd1bdaf65b413a4c37f70b84313b7 + +%% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4 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 : +portée (@code{Staff}) permet de distribuer un arpège sur plusieurs +voix@tie{}: " doctitlefr = "Arpège distribué sur plusieurs voix" @@ -35,20 +41,22 @@ portée (@code{Staff}) permet de distribuer un arpège 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 moved to the @code{Staff} +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 } \\ + { 4\arpeggio 2 } + \\ { 2\arpeggio 2 } >> }