lilypond-user
[Top][All Lists]
Advanced

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

Re: An unusual feature request concerning FiguredBass


From: Noeck
Subject: Re: An unusual feature request concerning FiguredBass
Date: Sat, 28 Apr 2018 19:08:07 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0

Dear Robert,

I don't know this notation. So my advice is probably not the best solution.

> Entering FiguredBass1 and FiguredBass2 did not give me anything but
> error messages

You mean \new FiguredBass1 ? You cannot just invent context names. But
you can stack several contexts of the same type.

Here is one example that at least comes close:

\version "2.19.80"

<<
  \new Staff

  {
    \clef bass
    \key d \minor
    \time 4/2

    d1 2 a bes1 f a2 d a,1
  }
  \new FiguredBass
  \with { \override BassFigure.extra-offset = #'(0 . -3.5) }
  \figuremode { s1 s <5>2 <6> <6>1 s <_+> }
  \new RhythmicStaff
  \new FiguredBass
  \figuremode { s1 s2 s <6> s2 s1 s s }
>>

\layout {
  \context {
    \RhythmicStaff
    instrumentName = \markup \right-column {
      "Pretonal"  "Tonal"
    }
    \omit BarLine
    \omit TimeSignature
  }
}

Of course, the following would be much simpler and you could try to draw
a line by hand (\markup or so):

<<
  \new Staff  {
    \clef bass
    \key d \minor
    \time 4/2

    d1 2 a bes1 f a2 d a,1
  }
  \new FiguredBass \figuremode { s1 s <5 6>2 <6> <6>1 s <_+> }
>>

Cheers,
Joram



reply via email to

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