Jump to content

Distancing the metronome sign: Difference between revisions

From LilyPond wiki
Import snippet from LSR
 
m New category
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
If you're not happy with the distance of the metronome sign from the score, you can alter its position using the <code>padding</code> property of <code>MetronomeMark</code>.
If you're not happy with the distance of the metronome sign from the score, you can alter its position using the <code>padding</code> property of <code>MetronomeMark</code>.


<lilypond version="2.24.0">
<lilypond version="2.24">
%% http://lsr.di.unimi.it/LSR/Item?id=13
%% http://lsr.di.unimi.it/LSR/Item?id=13


Line 18: Line 18:
[[Category:Tweaks and overrides]]
[[Category:Tweaks and overrides]]
[[Category:Really simple]]
[[Category:Really simple]]
[[Category:Snippet]]

Latest revision as of 23:37, 21 November 2025

If you're not happy with the distance of the metronome sign from the score, you can alter its position using the padding property of MetronomeMark.

\version "2.24"

%% http://lsr.di.unimi.it/LSR/Item?id=13


{
  \tempo 4 = 60
  \repeat unfold 4 e''4
  \override Score.MetronomeMark.padding = #3
  \tempo 4 = 60
  \repeat unfold 4 e''4
}