Hello.

> The two lines
>         e2~ e8 r \tempo 4=90 r4
>       \mark \markup{"Andante"}

You should use several "\score" and indicate the required "\tempo"
in "\midi" blocks as in the following (also, "\header" is more
adequate to indicate the movement name):

%-----
\score {
    \relative c'' { e2~ e8 r }
    \header { piece = "Adagio" }
    \midi { \tempo 2 = 40 }
    \layout {}
}
\score {
    \relative c'' { r4 }
    \header { piece = "Andante" }
    \midi { \tempo 4 = 90 }
    \layout {}
}
%-----

Best,
Gilles


_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to