José Luis Cruz wrote:
Thank you Matt, I didn't knew the syntax change. For the record:
\override TextSpanner #'edge-text = #'("rall " . "")
now woud be:
\override TextSpanner #'bound-details #'left #'text = \markup {
\italic "rall" }
cheers,
The documentation regarding this syntax change needs
Thank you Matt, I didn't knew the syntax change. For the record:
\override TextSpanner #'edge-text = #'("rall " . "")
now woud be:
\override TextSpanner #'bound-details #'left #'text = \markup { \italic "rall" }
cheers,
___
bug-lilypond mailing li
The syntax has been changed, but it seems that the manual hasn't been
completely
updated. The new syntax is described in Section "Text and line spanners"
whereas the section called "Text spanners" and several other examples in
the
manual are outdated.
A simple method for you to update this fil
The example is extracted from the documentation. It doesnt print text,
but only a continuos line.
%
\version "2.11.20"
\paper{ ragged-right=##t }
{
c1
\textSpannerDown
\override TextSpanner #'edge-text = #'("rall " . "")
c2\startTextSpan b c\stopTextSpan a
}