lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Polyrythmic Align Bars


From: Lukas-Fabian Moser
Subject: Re: Polyrythmic Align Bars
Date: Mon, 16 Sep 2019 16:16:40 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0

Hi,

The 4/4-Bar needs to be played over the duration of the two 6/8-Bars and I want it to realign afterwards to continue both voices with a 6/8 time.

The 4/4-Part would need to have a different tempo, because if both play at the same tempo, they won’t align.

It is probably harder to write this down than to actually play it, but this should be the easiest way to notate this without using tons of tuplets.

Something like this?

%%%%%%%%%%%%%

\version "2.19.83"

 

\layout {

  \context {

    \Score

    \remove "Timing_translator"

    \remove "Default_bar_line_engraver"

  }

  \context {

    \Staff

    \consists "Timing_translator"

    \consists "Default_bar_line_engraver"

  }

}

 

\relative c'' <<

  \new Staff {

      \time 4/4
      \set Timing.measureLength = #(ly:make-moment 12/8)
      \scaleDurations 12/8 {
        e,,8 e g fis16 e8. e8  g fis |
      }

      \time 6/8
      a8 a a a a a

  }

  \new Staff {

    \time 6/8

    g'4. e~ |

    e2 e8 fis |

    a a a a a a

  }

>>

%%%%%%%%%%%%%%

 

Best
Lukas


reply via email to

[Prev in Thread] Current Thread [Next in Thread]