lilypond-user
[Top][All Lists]
Advanced

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

Re: 2 eigth notes act weird


From: Kieren MacMillan
Subject: Re: 2 eigth notes act weird
Date: Fri, 19 Jun 2015 11:07:55 -0400

Hi Marko,

> I am trying to do some quartet music. All my voices I hold in separate 
> variables and then use them. This is my code:
> 
> \score{
>   <<
>     \new Staff
>       \global
>       \new Voice = "tenorI"
>         \tenorI }
>       \new Voice = "tenorII"{
>         \tenorII }
>      new Lyrics \lyricsto "tenorII" {
>           \kiticaI } >>
>     \new Staff <<
>       \global
>       \new Voice = "bariton"{
>         \bariton }
>       \new Voice = "bas"{
>         \bas } >>
>   >>
> 
> In tenor parts I have two eight notes: <lilypond question.png>I want to 
> connect flags (if that is a good name for that). This looks like it's sixteen 
> note.
> Can you help me?

You should combine the voices using Lilypond’s built-in multi-voice mechanisms 
— then Lilypond will position elements (e.g., noteheads, stems, flags, etc.) 
correctly, and/or combine the individual voices into chords, depending on which 
mechanism(s) you use.

For example, applying \voiceXXX commands, you could write

    \new Staff <<
      \global
      \new Voice = “tenorI” { \voiceOne \tenorI }
      \new Voice = “tenorII” { \voiceTwo \tenorII }
    >>

There is also the part-combiner, if you want to go that route.

Hope this helps!
Kieren.
________________________________

Kieren MacMillan, composer
‣ website: www.kierenmacmillan.info
‣ email: address@hidden




reply via email to

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