MIDI: fix regtest failure
[lilypond/patrick.git] / input / regression / metronome-marking-break-align.ly
blob9d0149fde977a48b95ad0dd00560b15640e28d7c
1 \version "2.13.24"
3 \header {
4 texidoc = "@code{\\tempo} marks are aligned with the time signature
5 or first musical element unless the first element is a multi-measure
6 rest: in this case, the tempo mark is aligned with the bar line.
8 By overriding @code{break-align-symbols} the default alignment can be
9 changed, as shown by the final metronome mark in this snippet, aligned
10 with a key signature.
14 \layout {
15 line-width = 50\mm
18 \relative c' {
19 \tempo "T-first"
21 \mark \default
22 \tempo "T-note"
23 c1 \break
24 \tempo "T-break"
26 \tempo "T-rest"
27 R1 \break
28 \time 8/8
29 \tempo "T-time"
31 \override Score.MetronomeMark #'break-align-symbols = #'(key-signature)
32 \key as \major
33 \tempo "T-key"