bug-lilypond
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Any solution or workaround for collision between bass figure and art


From: Pierre Perol-Schneider
Subject: Re: Any solution or workaround for collision between bass figure and articulation?
Date: Fri, 7 Aug 2020 09:19:42 +0200

Hi Mats,
Here are two workarounds:

\version "2.20.0"

mus = \relative c' {
\clef bass
c2-> c-!
}

figs=\figuremode {
 \temporary\override Staff.BassFigureAlignmentPositioning.Y-offset = #7
  <6>2 <4>
}

\new Staff <<
   \mus
   \figs
 >>

#(define-markup-command (sp layout props arg) (number?)
  "Put some space between figured bass and articulation."
  (interpret-markup layout props
    #{\markup \column { \transparent "-" \vspace #(/ arg 10) }#}))


figs=\figuremode {
  <6\markup\sp#2 >2 <4\markup\sp#2 >
}

 \new Staff <<
   \mus
   \figs
 >>

Cheers,
Pierre

Le jeu. 6 août 2020 à 22:28, Mats Bengtsson <mats.bengtsson@ee.kth.se> a
écrit :

> Hi,
>
> As is already documented in
> https://gitlab.com/lilypond/lilypond/-/issues/1277 since many years,
> bass figures typeset within a Staff collide with articulations. Just
> wanted to make a small "ping" and check if anybody can think of a
> workaround or solution? Here's a simple testcase to play with, in
> addition to the one in the bug tracker.
>
> \version "2.20.0"
>
> mus = \relative c' {
> \clef bass
> c2-> c-!
> }
>
> figs=\figuremode {
> <6>2 <4>
> }
>
> \new Staff <<
>    \mus
>    \figs
>  >>
>
>      /Mats
>
>
> _______________________________________________
> bug-lilypond mailing list
> bug-lilypond@gnu.org
> https://lists.gnu.org/mailman/listinfo/bug-lilypond
>


reply via email to

[Prev in Thread] Current Thread [Next in Thread]