]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/printing-metronome-and-rehearsal-marks-below-the-staff.ly
Merge branch 'master' of git://git.sv.gnu.org/lilypond.git into td-lily
[lilypond.git] / input / lsr / printing-metronome-and-rehearsal-marks-below-the-staff.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.38"
4
5 \header {
6   lsrtags = "rhythms, expressive-marks, staff-notation, tweaks-and-overrides"
7
8   texidoc = "
9 By default, metronome and rehearsal marks are printed above the staff.
10 If you would like to have them below the staff, simply set the
11 'side-axis and 'direction properties of MetronomeMark or RehearsalMark
12 appropriately.
13
14 "
15   doctitle = "Printing metronome and rehearsal marks below the staff"
16 } % begin verbatim
17 {
18   % Metronome marks below the staff
19
20   \override Score.MetronomeMark #'side-axis = #Y
21   \override Score.MetronomeMark #'direction = #DOWN
22   \tempo 8.=120 c''1
23
24   % Rehearsal marks below the staff
25
26   \override Score.RehearsalMark #'side-axis = #Y
27   \override Score.RehearsalMark #'direction = #DOWN
28   \mark\default c''1
29 }