]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/metronome-marking-break-align.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / metronome-marking-break-align.ly
1 \version "2.19.21"
2
3 \header {
4   texidoc = "@code{\\tempo} marks are aligned with the time signature
5 or the position of the first note.
6
7 By overriding @code{break-align-symbols} the default alignment can be
8 changed.  If no symbol in @code{break-align-symbols} is present, the
9 property @code{non-break-align-symbols} determines the alignment.  If
10 the alignment object is a multi-measure rest, the tempo mark is aligned
11 with the preceding bar line.
12 "
13 }
14
15 \layout {
16   line-width = 50\mm
17 }
18
19 \relative {
20   \tempo "T-first"
21   c'1
22   \mark \default
23   \tempo "T-note"
24   c1 \break
25   \tempo "T-break"
26   c1
27   \tempo "T-phantom"
28   R1 \break
29   \time 8/8
30   \tempo "T-time"
31   R1
32   \override Score.MetronomeMark.break-align-symbols = #'(key-signature)
33   \key as \major
34   \tempo "T-key"
35   c1 \break
36   \override Score.MetronomeMark.non-break-align-symbols =
37     #'(note-column-interface multi-measure-rest-interface)
38   \tempo "T-rest"
39   R1
40   \tempo "T-rest"
41   R1
42 }