On Fri, 21 Jun 2024 at 11:09, Curt McDowell <pla...@fishlet.com> wrote:
> baseline-skip seems to do the job: > > <c \finger \markup \override #'(baseline-skip . 1.4) \column { "1" "2" } g-3> > > Found here: LilyPond snippets: Tweaks and overrides > <https://lilypond.org/doc/v2.23/Documentation/snippets/tweaks-and-overrides> > > Regards, > Curt > > On 6/20/2024 5:00 PM, Fennel wrote: > > Hi all, > > Getting this behavior when trying to put fingerings in column format on > chords: > > \version "2.24.3" > \relative c'' { > \set fingeringOrientations = #'(left) > <c\finger \markup \column {"1" "2"} g-3> > } > > I’d like the 1 to be much closer to the 2. Does anyone know the correct > property to adjust to make this happen / where in the docs should I be > looking as my current efforts are not going too well. > > -Fennel > > To do this globally: \layout { \context { \Voice \override Fingering.baseline-skip = #1.4 } } -Vaughan