Printing metronome and rehearsal marks below the staff: Difference between revisions

Import snippet from LSR
 
mNo edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
By default, metronome and rehearsal marks are printed above the staff. To place them below the staff simply set the <code>direction</code> property of <code>MetronomeMark</code> or <code>RehearsalMark</code> appropriately.
By default, metronome and rehearsal marks are printed above the staff. To place them below the staff simply set the <code>direction</code> property of <code>MetronomeMark</code> or <code>RehearsalMark</code> appropriately.


<lilypond version="2.24.0">
<lilypond version="2.24">
\layout {  
\layout {
  indent = 0
   ragged-right = ##f
   ragged-right = ##f  
}
}


{
{
   % Metronome marks below the staff  
   % Metronome marks below the staff
   \override Score.MetronomeMark.direction = #DOWN
   \override Score.MetronomeMark.direction = #DOWN
   \tempo 8. = 120
   \tempo 8. = 120
Line 24: Line 23:
[[Category:Tweaks and overrides]]
[[Category:Tweaks and overrides]]
[[Category:Included in the official documentation]]
[[Category:Included in the official documentation]]
[[Category:Snippet]]