2015-01-11 18:21 GMT+01:00 tisimst <tisimst.lilyp...@gmail.com>:
> Kevin,
>
> Voices 1, 3, etc. (odd numbered) point stems up. Voices 2, 4, etc. (even
> numbered) point stems down. So, if you want the quarter notes stemmed up and
> the half notes stemmed down, switch their order in the brackets, like
>
> <<{r4 <a c e> r <a c e> }\\{c2 e}>>
>
> HTH,
> Abraham



Or:

\version "2.18.0"

global = {
  \clef "treble_8"
  \key g \major
  \time 4/4 %% not needed, 4/4 is default
}

one =
  \new Voice
    \relative c' {
      \voiceOne
      %% maybe add:
      % \override Rest.staff-position = 0
      r4 <a c e> r <a c e>
    }

two =
  \new Voice
    \relative c {
      \voiceTwo
      c2 e
  }


\new Staff <<
  << \global \one >>
  << \global \two >>
>>

I strongly recommend to read the Learning Manual and to look into the
Notation Reference


HTH,
  Harm

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to