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