Risto Vääräniemi wrote:
Hi again,

Has no-one else encountered this issue?


BR,

Risto

2009/1/21 Risto Vääräniemi <risva...@gmail.com>:

I was wondering why a \score inside \markup doesn't allow breaks. If I
insert a \break everything after it is ignored. If I want to have a
multi-line piece inside a \markup I have to put multiple \scores in a
column. Is there another way?

-Risto

%%%% start %%%%
\version "2.12.1"

\markup
{
   \score
   {
       {c'1 c' c' c' \break c' c' c' c'}
       \layout {}
   }
}
%%%% END %%%%


Hmm, I can see how this could be annoying -- I guess \markup's ability to include a \score was originally intended for short phrases and alternative readings etc., although the docs provide an example of some length.
http://lilypond.org/doc/v2.12/Documentation/user/lilypond/Music#Music

I've tried:
----------------------
\version "2.12.1"

\markup
{
  \score
  {
\new Voice \with { \remove Forbid_line_break_engraver } % intended for allowing \breaks at 'wrong' places in the bar
       { c'1 c' c' c' \break c' c' c' c' }
      \layout {}
  }
}

--------------------------

and

--------------------------
\version "2.12.1"

\markup
{
  \score
  {
      \new Staff {c'1 c' c' << c' { s1 \break } >>  c' c' c' c'}
      \layout {}
}
}
-----------------------------

Terminal output insists that Lily's "Calculating line breaks... " but everything after \break is ignored in both cases.




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

Reply via email to