2013/8/13 Peter Toye <[email protected]>:
> I want to put a tempo marking (e,g, Allegro) into a song above both the
> piano part and the vocal part. (I'm one of those people who believes in
> making life easier for the pianist). And I can't see how to do it.
>
> With the code as it is the "\tempo" indication is ignored.
>
> If I move the "\tempo" above the "\new Staff" or outside the "<<" I get a
> new staff with n o lines, and still no tempo indication.
>
> How do I do it, please? I can't see it in the snippets.
>
>
> Regards,
>
> Peter Toye
> mailto:[email protected]
> www.ptoye.com
>
> _______________________________________________
> lilypond-user mailing list
> [email protected]
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>

Hi,

how about:

\version "2.16.2"

\layout {
        \context {
                \Score
                \remove "Metronome_mark_engraver"
        }
        \context {
                \Staff
                \consists "Metronome_mark_engraver"
        }
}

<<
 \new Staff { \tempo 4=80 c1 }
 \new PianoStaff
 <<
 \new Staff { \tempo 4=80 c1 }
 \new Staff {  \clef bass c1 }
 >>
>>

HTH,
  Harm

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

Reply via email to