lilypond-user
[Top][All Lists]
Advanced

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

Breaking notes up across bar lines when using lyrics


From: David Bellows
Subject: Breaking notes up across bar lines when using lyrics
Date: Thu, 4 Sep 2014 13:47:49 -0700

I'm working on a huge project that generates literally tons of scores. I have chosen have Lilypond break notes up at bar lines. Even though the music isn't actually in 4/4 (or whatever) I think it makes it easier to read or look nicer.

But when I add lyrics it stops breaking up the notes and everything looks funky again.

In the following code, if you comment out the \addlyrics bit then it works as it should, but if you leave it in then it doesn't. Does anyone know of a solution or have any suggestions?

\version "2.19.13" 

\header { 
   title = "Music" 
  composer = "David Bellows" 
  }

\language "english"

voice_one = {
\key c \major
\clef "treble"
\time 4/4
\tempo "Andante" 4 = 90
g''8\f d''2 a''4 ds''4 e''16 r1 fs''8\f r4 cs''4\f f''4\bar "|."
}

\score {
  \new Staff 
<< 
\new Voice = "first" \with {\remove"Note_heads_engraver" \consists "Completion_heads_engraver" \remove "Rest_engraver" \consists "Completion_rest_engraver"} 
\voice_one 
\addlyrics {v t θ ʔ t͡ʃ  k  f θ }
>> 
\layout {ragged-bottom = ##t ragged-right = ##t \context { \Score \override DynamicText.stencil = ##f }} 
}


reply via email to

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