Carl, Thanks. Of course.
Best regards, Peter mailto:lilyp...@ptoye.com www.ptoye.com ------------------------- Thursday, June 18, 2020, 5:37:20 PM, Carl Sorensen wrote: 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 <lilyp...@ptoye.com> Reply-To: Peter Toye <lilyp...@ptoye.com> Date: Thursday, June 18, 2020 at 9:29 AM To: <lilypond-user@gnu.org> 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" } } }