lilypond-user
[Top][All Lists]
Advanced

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

Re: stemUp is ignored - why?


From: Nicolas Sceaux
Subject: Re: stemUp is ignored - why?
Date: Sat, 15 Apr 2006 19:04:00 +0200
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (darwin)

Tomas Valusek <address@hidden> writes:

> Hello,
>
> In the following code, \stemUp is ignored, and I don't know why. Can
> anyone help me? Thank you.
>
> Tomas Valusek
>
> % Begin code
> \version "2.8.1"
> \relative c' {
> \clef treble
> \key c \major
> \time 4/4
>
> <<
> {
> f2 g
> r2 \stemUp f \stemNeutral
> } \\
> {
> es4( des) f( e!)
> <<
> {
> c2 ~ \stemDown <c a>
> } \\
> {
> bes4( a ~ \hideNotes a2) \unHideNotes
> }
>  >>
> }
>  >>
> }
>
>   \layout { ragged-right=##t }

Please format your code in a readable fashion.
I'm not sure why the f has a down stem, but the following seems to fix
it:

\version "2.8.1"
\relative c' {
  \clef treble
  \key c \major
  \time 4/4
  << 
    \new Voice { 
      \voiceOne f2 g | r2 f \stemNeutral 
    }
    \new Voice { 
      \voiceTwo es4( des) f( e!) | bes4( a ~ \hideNotes a2) \unHideNotes 
    }
    \new Voice { 
      \voiceThree s1 | c2 ~ \voiceTwo <c a> 
    } 
  >>
}




reply via email to

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