lilypond-user
[Top][All Lists]
Advanced

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

Re: Merging stems with three voices on one staff


From: Kieren MacMillan
Subject: Re: Merging stems with three voices on one staff
Date: Wed, 17 Sep 2008 12:59:27 -0400

Hi Morten,

Is the some way to merge the stem and beam of the middle note with one of the other voices?

Put them into the same Voice context — see my adjustment of your example.

HTH!
Kieren.

%%%%%%%%%%%%%%%%%%%%%%%%
\version "2.10.33"

\header {
  title = "Test"
}

global = {
  \clef "G_8"
  \key c \major
  \time 4/4
  \tempo 4=60
}

melody = \relative a {
  a8 g b a g b
}

tmelody = {\transpose a c' \melody}
tglobal = {\transpose a c' \global}

musik = {
  \context StaffGroup <<  
        \context Staff = tenor <<
          \tglobal
\context Voice = "ftenor and atenor" { \voiceOne << \tmelody \transpose c g, \tmelody >> } \\
          \context Voice = "ttenor" { \voiceTwo \transpose c c, \tmelody }
>>        
>>
}

\score {
  \musik
  \layout {}
}



reply via email to

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