Change

\new Voice = “vocals”

To

\new Staff = “vocals”


The Voice exists inside a Staff.

Your metronome mark in the vocals was aligned with the beginning of the Voice, 
not the beginning of the Staff.

Your metronome mark in the PianoStaff aligned with the beginning of the Staff.

HTH,

Carl


From: Peter Toye <[email protected]>
Reply-To: Peter Toye <[email protected]>
Date: Thursday, June 18, 2020 at 9:29 AM
To: <[email protected]>
Subject: Misaligned tempo indications

\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"
    }
  }

}


Reply via email to