lilypond-user
[Top][All Lists]
Advanced

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

Re: Alignment of ‘non-extremal’ bass figures


From: Thomas Morley
Subject: Re: Alignment of ‘non-extremal’ bass figures
Date: Sat, 16 Jan 2016 12:16:32 +0100

2016-01-16 0:44 GMT+01:00 Simon Albrecht <address@hidden>:
> Hello,
>
> does anyone know how to vertically align the 9 and 8 in the following
> example?
>
> \version "2.19.35"
> \score {
>   <<
>     { s1 }
>     \figures {
>       <10 9>4  <8>
>     }
>   >>
> }
>
> TIA, Simon


Hi Simon,

aligning 9 and 8 makes only sense, if the 10 from the first continues
in the second BassFigure. In this case you should use
BassFigureContinuation, which can be made transparent, ofcourse.

\version "2.19.35"

\score {
  <<
    { s1 }
    \figures {
      <10 9>4
      \once \hide BassFigureContinuation
      \once \bassFigureExtendersOn
      <10 8>4
    }
  >>
}


HTH,
  Harm



reply via email to

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