]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-metronome-and-rehearsal-marks-below-the-staff.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[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.dsi.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.16.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
22 \layout { ragged-right = ##f }
23
24 {
25   % Metronome marks below the staff
26   \override Score.MetronomeMark #'direction = #DOWN
27   \tempo 8. = 120
28   c''1
29
30   % Rehearsal marks below the staff
31   \override Score.RehearsalMark #'direction = #DOWN
32   \mark \default
33   c''1
34 }