]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/additional-voices-to-avoid-collisions.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / additional-voices-to-avoid-collisions.ly
index 749559f016cd014f5995ff8c3d09577ac680233f..7587f35e4804e2eadb2a88f5a2c73461bd5fc100 100644 (file)
@@ -1,10 +1,10 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% 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.16.0"
+\version "2.18.0"
 
 \header {
   lsrtags = "simultaneous-notes"
@@ -19,7 +19,6 @@ a variable using the Scheme function @code{context-spec-music}.
   doctitle = "Additional voices to avoid collisions"
 } % begin verbatim
 
-
 voiceFive = #(context-spec-music (make-voice-props-set 4) 'Voice)
 
 \relative c'' {
@@ -27,32 +26,29 @@ voiceFive = #(context-spec-music (make-voice-props-set 4) 'Voice)
   \key d \minor
   \partial 2
   <<
-    {
+    \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
     }
-    \\
-    \bar "||"{
-      \voiceTwo
-      d2
-      d4 cis2
-      d4 bes2
-    }
   >>
 }