lilypond-user
[Top][All Lists]
Advanced

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

Misaligned tempo indications


From: Peter Toye
Subject: Misaligned tempo indications
Date: Thu, 18 Jun 2020 16:29:55 +0100

I'm trying to set a song and have the tempo indications on both vocal and piano staves. I used Hwaen Ch'uqi's suggestion from way back to get the correct engravers, but they aren't aligned correctly. Here's an MWE. Any ideas how to get them to align?

\version "2.20.0"

\language "english"

\score {
  <<
    \new Voice = "vocals"
    \with {
      \consists "Metronome_mark_engraver"
    }
    {
      \clef "treble"
      \tempo "Andante"
      %
      \relative
      { c'4 c d d }
    }

    \new PianoStaff {
      <<
        \new Staff
        \with {
          \consists "Metronome_mark_engraver"
        }
        {
          \clef "treble"
          \tempo "Andante"
          \relative {
            r4 <c' e g>  r <b d g>  |
          }
        }
        \new Staff {
          \clef "bass"
          \relative {
            c2 g
          }
        }
      >>
    }
  >>

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

}


 
Regards,

Peter
mailto:lilypond@ptoye.com
www.ptoye.com
reply via email to

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