💾 Archived View for thrig.me › blog › 2023 › 10 › 11 › chromatic-dm2.ly captured on 2024-07-09 at 01:51:41.

View Raw

More Information

⬅️ Previous capture (2023-11-04)

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

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

\version "2.12.0"

\header {
  title = "Chromatic D2 (-P4/+m3)"
  subtitle = "Barely tonal, must break off rep on ♭VI"
  subsubtitle = "and thence to pre-dom function (per TCM)"
}

theKey = \relative c {
  <c g' c e>2
  <b g' g d'>
}

upper = {
  \clef bass
  \key c \major

  \repeat unfold 1 {
    \theKey
    \transpose c bes, \theKey
    \transpose c aes, \theKey
    \transpose c ges, \theKey
    \transpose c fes, \theKey
    \transpose c d, \theKey
    \relative c, {
      <c g' c e>1
    }
  }

  \bar "|."
}
\score {
  \new Staff \upper
  \layout { }
  \midi { }
}