X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fadditional-voices-to-avoid-collisions.ly;h=7587f35e4804e2eadb2a88f5a2c73461bd5fc100;hb=942f957aae58fdc7252d6bc2b548a28e9fadc666;hp=757e1f6f826622baa69eedaaf070cfe3c4eb824b;hpb=f99ae4cae742b0ea3ab3c2ac5c9d8f7bf1fbdeff;p=lilypond.git diff --git a/Documentation/snippets/additional-voices-to-avoid-collisions.ly b/Documentation/snippets/additional-voices-to-avoid-collisions.ly index 757e1f6f82..7587f35e48 100644 --- a/Documentation/snippets/additional-voices-to-avoid-collisions.ly +++ b/Documentation/snippets/additional-voices-to-avoid-collisions.ly @@ -1,31 +1,14 @@ -%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it +%% DO NOT EDIT this file manually; it is automatically +%% generated from LSR http://lsr.di.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.1" +\version "2.18.0" \header { lsrtags = "simultaneous-notes" -%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca - doctitlees = "Voces adicionales para evitar colisiones" - texidoces = " -En ciertos casos de polifonía compleja, se necesitan voces adicionales -para evitar colisiones entre las notas. Si se necesitan más de cuatro -voces paralelas, las voces adicionales se añaden definiendo una -variable que utiliza la función de Scheme @code{context-spec-music}. - -" - -%% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d - texidocde = " -Ein einigen Fällen von sehr komplexer polyphoner Musik sind zusätzliche -Stimmen notwendig, um Zusammestöße zwischen den Noten zu vermeiden. -Wenn mehr als vier parallele Stimmen benötigt werden, können zusätzliche -Stimmen definiert werden, indem eine Variable mit der Funktion -@code{context-spec-music} definiert wird. - -" - doctitlede = "Zusätzliche Stimmen, um Zusammenstöße zu vermeiden" - texidoc = " In some instances of complex polyphonic music, additional voices are necessary to prevent collisions between notes. If more than four @@ -37,29 +20,35 @@ a variable using the Scheme function @code{context-spec-music}. } % begin verbatim voiceFive = #(context-spec-music (make-voice-props-set 4) 'Voice) + \relative c'' { - \time 3/4 \key d \minor \partial 2 + \time 3/4 + \key d \minor + \partial 2 << - { \voiceOne + \new Voice { + \voiceOne a4. a8 e'4 e4. e8 f4 d4. c8 - } \\ { + } + \new Voice { + \voiceTwo + d,2 + d4 cis2 + d4 bes2 + } + \new Voice { \voiceThree - f,2 + f'2 bes4 a2 a4 s2 - } \\ { + } + \new Voice { \voiceFive s2 g4 g2 f4 f2 - } \\ { - \voiceTwo - d2 - d4 cis2 - d4 bes2 } >> } -