lilypond-user
[Top][All Lists]
Advanced

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

Equal spacing of notes in a bar


From: William Marchant
Subject: Equal spacing of notes in a bar
Date: Mon, 24 Aug 2015 15:54:31 -0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.8.0

I have looked though the documentation without finding what I need. The attached code gives me a triplet whose notes are spaced according to the words. I would like to equalize the spacing between the notes. Is there a snippet I have missed, or some technique that will provide this?
Bill

\version "2.18.2"
global = {
  \language "english"
  \key bf \major
  \time 3/4
}
melody = \relative c' {
    \tuplet 3/2 { bf8 c d }  c2 |
}
  VerseOne = \lyricmode {
  Give me a big
  }
 \score {
  \new ChoirStaff <<
    \new Staff <<
      \new Voice = "Song" {
        \global
        \melody
      }
      \new Lyrics \lyricsto "Song" {
        \VerseOne
      }
    >>
  >>
  \layout {
    \context {
      \Score
    }
  }
}




reply via email to

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