💾 Archived View for thrig.me › blog › 2023 › 10 › 11 › ascending-5-6.ly captured on 2023-11-04 at 12:28:36.

View Raw

More Information

-=-=-=-=-=-=-

% LilyPond engraving system - http://www.lilypond.org/

\version "2.12.0"

\header {
  title = "Ascending 5-6 Sequence (-3/+4)"
}

theKey = \relative c {
  <c c' e g>
  <a c' e a>
}

theScale = \relative c' { c d e f g a b }

upper = {
  \clef bass
  \key c \major

  \repeat unfold 1 {
    \theKey
    \modalTranspose c d \theScale \theKey
    \modalTranspose c e \theScale \theKey
    \modalTranspose c f \theScale \theKey
  }
}
\score {
  \new Staff \upper
  \layout { }
  \midi { }
}