On Fri, 17 May 2019 at 11:22, Edward Neeman <[email protected]> wrote: > > Hello, > > How can I modify my tweaks to take into account a smaller staff-space? In the example below, I’d like to set the padding to 1.1 * the staff-space, instead of explicitly writing 0.7. > > Previously I was using \magnifyStaff but that caused issues with the final bar line. > > Thanks, > Edward > > \version "2.19.83" > > << > \relative { > \override Staff.StaffSymbol.staff-space = #(magstep -4) > \override Staff.StaffSymbol.thickness = #(magstep -4) > \set Staff.fontSize = #-4 > \override TupletBracket.padding = #0.7 > \tuplet 3/2 { c' c c } > } > \relative { > \tuplet 3/2 { c' c c } > } > >>
Hello, I am not a Scheme expert but the following seems to do the trick: \override TupletBracket.padding = #(* (magstep -4) 1.1) Cheers, Xavier -- Xavier Scheuer <[email protected]>
_______________________________________________ lilypond-user mailing list [email protected] https://lists.gnu.org/mailman/listinfo/lilypond-user
