lilypond-user
[Top][All Lists]
Advanced

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

Re: Voice notes stem direction, bass line with score


From: Thomas Morley
Subject: Re: Voice notes stem direction, bass line with score
Date: Sun, 11 Jan 2015 18:26:16 +0100

2015-01-11 18:21 GMT+01:00 tisimst <address@hidden>:
> 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



reply via email to

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