]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/metronome-range.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / metronome-range.ly
1 \version "2.14.0"
2
3 \header {
4   texidoc = "
5 Tempo ranges are supported.  By default, numbers are
6 printed with an en-dash character, separated by thin-spaces.
7 "
8 }
9
10 \relative c'' {
11   \tempo 4 = 66 ~ 72
12   c1 | c
13   #(ly:export
14     (make-event-chord (list (make-music 'TempoChangeEvent
15                                         'tempo-unit (ly:make-duration 2 0 1 1)
16                                         'metronome-count (cons 124 132)))))
17   c1 | c
18 }