lilypond-user
[Top][All Lists]
Advanced

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

tie from measure with one voice to a measure with two voices


From: Juan Cristóbal Cerrillo
Subject: tie from measure with one voice to a measure with two voices
Date: Thu, 16 Mar 2017 17:45:48 -0600

Hello,

I’m looking for a simpler way of being able to tie notes in a voice from a 
measure with only one voice to a measure with two voices.  The only way I have 
managed to do so is to create an empty voice in the first measure (see last 
example of snippet).  Is there a simpler way of doing this?

Any help would be greatly appreciated.

jc

\version "2.18.2"
%this is what I want in the first voice
\score {
  \relative c''
  {d2 e2~
   e f   
  }
}


%this doesn’t work, no tie in first voice
\score {
  \relative c''
  {
    d2 e2~
    <<
      {e f}
      \\
      {c4 d e f}
    >>
  }
}

%this works but seems cumbersome
\score {
  \relative c''
  {
    <<
      {\voiceOne
       d2 e2~
      }
      \\
      {}
    >>
    |
    <<
      {\voiceOne
       %     \voice principal
     
       e2 f
      }
      \\
      {
        c4 d e f}
    >>
  }
}


reply via email to

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