]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/printing-metronome-and-rehearsal-marks-below-the-staff.ly
Merge branch 'lilypond/translation' of ssh://trettig@git.sv.gnu.org/srv/git/lilypond...
[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.49"
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 To place them below the staff simply set the @code{side-axis} and
11 @code{direction} properties of @code{MetronomeMark} or
12 @code{RehearsalMark} 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
23   c''1
24
25   % Rehearsal marks below the staff
26
27   \override Score.RehearsalMark #'side-axis = #Y
28   \override Score.RehearsalMark #'direction = #DOWN
29   \mark \default
30   c''1
31 }