lilypond-user
[Top][All Lists]
Advanced

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

Why does the following bar check fail for measure 3?


From: Kevin Cole
Subject: Why does the following bar check fail for measure 3?
Date: Thu, 18 Nov 2021 21:14:54 -0500

Hi,

In the following example lyrics, what goes wrong at measure 3?

Thanks!

%%%%
\version "2.20.0"
\language "english"

\header {
  title = "broken"
  tagline = ""
}

\layout {
  \autoBeamOff
}

global = {
  \key c \major
  \time 3/4
}

melody = {
  \relative {
    \global
    g'2 c8. a16       | %   1
    g4 e4 e8. d16     | %   2
    c2 r4             | %   3
    r4 r4 g'4         | %   4
  }
}

words = \lyricmode {
  This is ok         | %   1
  And so is this     | %   2
  ???                | %   3
  ok                 | %   4
}

\score {
  <<
    \new Staff { \melody }
    \addlyrics { \words }
  >>
}
%%%%



reply via email to

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