]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-metronome-and-rehearsal-marks-below-the-staff.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / printing-metronome-and-rehearsal-marks-below-the-staff.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.18.0"
8
9 \header {
10   lsrtags = "expressive-marks, rhythms, tweaks-and-overrides"
11
12   texidoc = "
13 By default, metronome and rehearsal marks are printed above the staff.
14 To place them below the staff simply set the @code{direction} property
15 of @code{MetronomeMark} or @code{RehearsalMark} appropriately.
16
17 "
18   doctitle = "Printing metronome and rehearsal marks below the staff"
19 } % begin verbatim
20
21 \layout {
22   indent = 0
23   ragged-right = ##f
24 }
25
26 {
27   % Metronome marks below the staff
28   \override Score.MetronomeMark.direction = #DOWN
29   \tempo 8. = 120
30   c''1
31
32   % Rehearsal marks below the staff
33   \override Score.RehearsalMark.direction = #DOWN
34   \mark \default
35   c''1
36 }