scorescript 0.3
score "Two chapters" {
  text-page =front {
    heading "Table of Contents"
    contents sections
  }

  sections { first-key "C Major" { c-scale } second-key "F Major" { f-scale } }

  movements arabic {
    movement =c-scale {
      number 1
      title "C Major Scale"

      parts {
        tpt
      }

      tpt {
        m1 {
          1C5
        }
      }
    }

    movement =f-scale {
      number 2
      title "F Major Scale"

      parts {
        tpt
      }

      tpt {
        m1 {
          1F5
        }
      }
    }
  }
}
