Jump to content

Giving fingerings extra space: Difference between revisions

From LilyPond wiki
Created page with "Fingerings placed to the left of note heads can sometimes look too close to previous note heads. It is possible to use the <code>extra-spacing-width</code> property to fix this: <lilypond version="2.24"> \paper { indent = #0 ragged-right = ##t } \relative c'' { \set fingeringOrientations = #'(left) c4 c c <cis-3> \break c4 c c <cis \tweak Fingering.extra-spacing-width #'(-1 . 0) -3> } </lilypond> Category:Tweaks and overrides Category:Chords Cat..."
 
mNo edit summary
 
Line 1: Line 1:
Fingerings placed to the left of note heads can sometimes look too close to previous note heads. It is possible to use the <code>extra-spacing-width</code> property to fix this:
Fingerings placed to the left of note heads can sometimes look too close to previous note heads. It is possible to use the <code>extra-spacing-width</code> property to fix this.


<lilypond version="2.24">
<lilypond version="2.24">
\paper {
\paper {
  indent = #0
   ragged-right = ##t
   ragged-right = ##t
}
}
Line 12: Line 11:
   \break
   \break
   c4 c c
   c4 c c
   <cis \tweak Fingering.extra-spacing-width #'(-1 . 0) -3>
   <cis \tweak extra-spacing-width #'(-1 . 0) -3>
}
}
</lilypond>
</lilypond>
[[Category:Tweaks and overrides]]
 
[[Category:Chords]]
[[Category:Chords]]
[[Category:Editorial annotations]]
[[Category:Editorial annotations]]
[[Category:Tweaks and overrides]]
[[Category:Snippet]]

Latest revision as of 05:31, 24 December 2025

Fingerings placed to the left of note heads can sometimes look too close to previous note heads. It is possible to use the extra-spacing-width property to fix this.

\version "2.24"

\paper {
  ragged-right = ##t
}

\relative c'' {
  \set fingeringOrientations = #'(left)
  c4 c c <cis-3>
  \break
  c4 c c
  <cis \tweak extra-spacing-width #'(-1 . 0) -3>
}