X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fcollisions.ly;h=eeea895cdcf51318fc24f7bea4c9b66a0b2703fe;hb=7738c6fa2759373c05e34b003a7ed521e9382f37;hp=a97c248ec46c552e50764ef1d22f36c4b1a016ae;hpb=641486a1a5522a9e66b470d8c762a1f789219573;p=lilypond.git diff --git a/input/regression/collisions.ly b/input/regression/collisions.ly index a97c248ec4..eeea895cdc 100644 --- a/input/regression/collisions.ly +++ b/input/regression/collisions.ly @@ -1,56 +1,73 @@ -#(ly:set-option 'old-relative) -\version "2.4.0" +\version "2.19.21" \header{ -texidoc=" + texidoc=" In addition to normal collision rules, there is support for polyphony, -where the collosion are avoided by shifting middle voices horizontally. +where the collisions are avoided by shifting middle voices horizontally. " -filename = "collisions.ly" -enteredby = "HWN,JCN" -copyright = "public domain" } twovoice = - \relative c' \context Staff << - { g4 f f e e d d c } -\\ { c4 c d d e e f f } +\relative \context Staff << + { g4 f f e e d d c } + \\ { c4 c d d e e f f } >> twovoicechords = \context Staff << - \relative c' { - e4 d c b a g f - }\\ - \relative c' { - 4 4 4 4 - - } + \relative { + e'4 d c b a g f + }\\ + \relative { + 4 4 4 4 + + } >> threevoice = \context Staff << - { g4 f e f g a g2 } \\ - { c4 d e d c d es } \\ - { e4 e e e e e e e } + { g4 f e f g a g2 } \\ + { c4 d e d c d es } \\ + { e4 e e e e e e e } >> -hairyChord = \context Staff \relative c'' - << e \\ - fis, \\ - cis' \\ - \\ - ais - >> - - -\score{ - { \transpose c c' { - \twovoice - \twovoicechords - \threevoice } - \hairyChord - } - -% \midi { \tempo 4:80 } -} +hairyChord = \context Staff \relative +<< + e'' \\ + fis, \\ + cis' \\ + \\ + ais +>> + +minims = << + { e''2 e'' e' d' } \\ + c'' \\ + { c' c' c' c' } \\ + g' >> + +semibreves = << + { e''1 e'' e' d' } \\ + c'' \\ + { c' c' c' c' } \\ + g' >> + +sequence = << + \new Voice { \voiceOne g''1 e''2 d'' e'' d'' } + \new Voice { \voiceThree c''2 b' a'1 b' } + \new Voice { \voiceFour g'1 e'2 f'2 a'1 } + \new Voice { \voiceTwo c'1 c'2 d' e'2 d' } +>> + + { + \transpose c c' { + \twovoice + \twovoicechords + \threevoice + } + \hairyChord + \break + \minims \bar "||" + \semibreves \bar "||" + \sequence + }