]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/additional-voices-to-avoid-collisions.ly
LSR: Update.
[lilypond.git] / Documentation / snippets / additional-voices-to-avoid-collisions.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.4"
5
6 \header {
7   lsrtags = "simultaneous-notes"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10  doctitlees = "Voces adicionales para evitar colisiones"
11  texidoces = "
12 En ciertos casos de polifonía compleja, se necesitan voces adicionales
13 para evitar colisiones entre las notas.  Si se necesitan más de cuatro
14 voces paralelas, las voces adicionales se añaden definiendo una
15 variable que utiliza la función de Scheme @code{context-spec-music}.
16
17 "
18
19
20 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
21   texidocde = "
22 Ein einigen Fällen von sehr komplexer polyphoner Musik sind zusätzliche
23 Stimmen notwendig, um Zusammestöße zwischen den Noten zu vermeiden.
24 Wenn mehr als vier parallele Stimmen benötigt werden, können zusätzliche
25 Stimmen definiert werden, indem eine Variable mit der Funktion
26 @code{context-spec-music} definiert wird.
27
28 "
29   doctitlede = "Zusätzliche Stimmen, um Zusammenstöße zu vermeiden"
30
31   texidoc = "
32 In some instances of complex polyphonic music, additional voices are
33 necessary to prevent collisions between notes.  If more than four
34 parallel voices are needed, additional voices can be added by defining
35 a variable using the Scheme function @code{context-spec-music}.
36
37 "
38   doctitle = "Additional voices to avoid collisions"
39 } % begin verbatim
40
41 voiceFive = #(context-spec-music (make-voice-props-set 4) 'Voice)
42 \relative c'' {
43   \time 3/4 \key d \minor \partial 2
44   <<
45     { \voiceOne
46       a4. a8
47       e'4 e4. e8
48       f4 d4. c8
49     } \\ {
50       \voiceThree
51       f,2
52       bes4 a2
53       a4 s2
54     } \\ {
55       \voiceFive
56       s2
57       g4 g2
58       f4 f2
59     } \\ {
60       \voiceTwo
61       d2
62       d4 cis2
63       d4 bes2
64     }
65   >>
66 }
67