lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Tempo mark more than once


From: Thomas Morley
Subject: Re: Tempo mark more than once
Date: Tue, 13 Aug 2013 17:47:42 +0200

2013/8/13 Peter Toye <address@hidden>:
> 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:address@hidden
> www.ptoye.com
>
> _______________________________________________
> lilypond-user mailing list
> address@hidden
> 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]