]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/additional-voices-to-avoid-collisions.ly
lilypond-book robustness: ensure EOL at the end of @verbatim
[lilypond.git] / input / lsr / 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: 73115c93908af74c12a19753e79cbca47b2c2978
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.  Las voces adicionales se
13 añaden definiendo una variable que utiliza la función de Scheme
14 context-spec-music.
15
16 "
17
18 %% Translation of GIT committish: 0364058d18eb91836302a567c18289209d6e9706
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