X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fcross-staff-tremolos.ly;fp=Documentation%2Fsnippets%2Fcross-staff-tremolos.ly;h=743262705f347e8ca6c7733fb78e7ae4894b95bf;hb=941dff9d2a67080e0dd8474f1e70f0c72ace6424;hp=0000000000000000000000000000000000000000;hpb=5a22d6233a39d3164e1ca043244794c268be4ad0;p=lilypond.git diff --git a/Documentation/snippets/cross-staff-tremolos.ly b/Documentation/snippets/cross-staff-tremolos.ly new file mode 100644 index 0000000000..743262705f --- /dev/null +++ b/Documentation/snippets/cross-staff-tremolos.ly @@ -0,0 +1,66 @@ +%% 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 = "repeats, keyboards" + +%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c + + texidoces = " + +Dado que @code{\\repeat tremolo} espera exactamente dos argumentos +musicales para los trémolos de acorde, la nota o acorde que cambia de +pentagrama en un trémolo que cruza el pentagrama se debe colocar +dentro de llaves curvas junto a su instrucción @code{\\change Staff}. + +" + + doctitlees = "Trémolos de pentagrama cruzado" + +%% Translation of GIT committish: a5bde6d51a5c88e952d95ae36c61a5efc22ba441 + texidocfr = " +Dans la mesure où @code{\\repeat tremolo} requiert deux arguments +musicaux pour un trémolo d'accords, la note ou l'accord de la +portée opposée doît être encadré par des accolades et se voir adjoindre +la commande @code{\\change Staff}. + +" + doctitlefr = "Trémolo et changement de portée" + + + texidoc = " +Since @code{\\repeat tremolo} expects exactly two musical arguments for +chord tremolos, the note or chord which changes staff within a +cross-staff tremolo should be placed inside curly braces together with +its @code{\\change Staff} command. + +" + doctitle = "Cross-staff tremolos" +} % begin verbatim + +\new PianoStaff << + \new Staff = "up" \relative c'' { + \key a \major + \time 3/8 + s4. + } + \new Staff = "down" \relative c'' { + \key a \major + \time 3/8 + \voiceOne + \repeat tremolo 6 { + 32 + { + \change Staff = "up" + \voiceTwo + 32 + } + } + } +>> +