lilypond-user
[Top][All Lists]
Advanced

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

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


From: Hwaen Ch'uqi
Subject: Re: tie from measure with one voice to a measure with two voices
Date: Thu, 16 Mar 2017 20:03:53 -0400

Greetings JC,

Well, this may not be as simple as what you are looking for, but it
certainly would help to streamline your code>

\score {
  \relative c'' {
    <<
      {
        d2 e2~
        e2 f
      }
      \\
      {
        s1
        c4 d e f
      }
    >>
  }
}

Hwaen Ch'uqi


On 3/16/17, Juan Cristóbal Cerrillo <address@hidden> wrote:
> 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}
>     >>
>   }
> }
> _______________________________________________
> lilypond-user mailing list
> address@hidden
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>



reply via email to

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