In figured bass, attaching a text script to a skip (because one has to mark 
tasto solo parts with "t.s.") works, but it is not possible to use the _ 
direction indicator to print it below the staff. ^ and - work fine. Simple 
test case attached.

The problem happens in 2.12 as well as in 2.13.

AFAICS, the problem is that in figured bass, _ is redefined in the parser to 
mean an empty figure, so the parser does not detect it as a direction 
modifier, even if it is used outside of a bass figure, i.e. not inside <...>.

Cheers,
Reinhold
-- 
------------------------------------------------------------------
Reinhold Kainhofer, reinh...@kainhofer.com, http://reinhold.kainhofer.com/
 * Financial & Actuarial Math., Vienna Univ. of Technology, Austria
 * http://www.fam.tuwien.ac.at/, DVR: 0005886
 * LilyPond, Music typesetting, http://www.lilypond.org
\version "2.12.3"

ts = #(make-music 'TextScriptEvent 'text "t.s." 'direction UP )
% fb = \figuremode { <5>4 s4^\ts <3>2 } % Works
% fb = \figuremode { <5>4 s4-\ts <3>2 } % Works
fb = \figuremode { <5>4 s4\ts <3>2 } % Works
% fb = \figuremode { <5>4 s4_\ts <3>2 } % Does NOT work!!!
n = \relative c' { c4 d e f }

\score { <<
    \new Staff <<
      \new Voice << \n \fb >>
    >>
  >>
}

Attachment: fb_figuremode_direction.pdf
Description: Adobe PDF document

_______________________________________________
bug-lilypond mailing list
bug-lilypond@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to