I recommend that you search the mailing list archives before
sending bug reports. Also, always tell exactly what LilyPond
version you use. You specify 2.6.0 in your \version statements,
but I hope that you use 2.6.3.

Luc wrote:

% 3: ------------% I cannot get a segno and an automatic rehearsal mark
at the same place on a bar!

Three={

               \clef "G"


               \key a \minor


\time 3/4
               %             c'' 2.       \mark \default  \markup
\column{ \musicglyph #"scripts.segno" }

               % I tried a few things: the following works - but how do
I get the number of the rehearsal number to come?:

                              e'' 2.       \mark \markup \column{
\musicglyph #"scripts.ufermata"  \musicglyph #"scripts.coda" }

                              %and of course on a note:

                              f'' 2.       \segno  \fermata

}


               \score {  \new Staff{\Three}

                              \layout{}

                              \midi{}

                        } %score

This one requires some major hacking, at least the following is the best
I could come up with.

#(define-public (mark-with-segno mark context)
 (make-center-align-markup (list
        (make-musicglyph-markup "scripts.segno")
   (format-mark-letters mark context))))

Three={

\clef "G"
\key a \minor
\time 3/4
 c'' 2.
 \set Score.markFormatter = #mark-with-segno \mark \default |
 g'
 \set Score.markFormatter = #format-mark-letters \mark \default |

 e'' 2.
}

\score {
 \new Staff{\Three}
 \layout{}
 \midi{}
} %score



% 4: ----------% midi2ly does not work!

See the mailing list archives, for information on the Windows specific
problems with midi2ly. Of course, another aspect is that almost nobody
has ever found the tool useful anyway, but that's more due to MIDI than
to LilyPond (you can find discussions on this too in the archives).


  /Mats


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

Reply via email to