lilypond-user
[Top][All Lists]
Advanced

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

Re: stemless note


From: Thomas Morley
Subject: Re: stemless note
Date: Tue, 27 Aug 2013 21:27:11 +0200

2013/8/27 Mark Stephen Mrotek <address@hidden>:
> Hello:
>
>
>
> In the attached snip, the first beat of the second measure has a “f4.”
> without a stem.
>
>
>
> The error messages suggests using polyphonic voices. Since I am using << \\
>>>, I do not know what that means.
>
>
>
> I have tried changing stem direction - \stemUp, \stemDown.
>
> I have tried shifting the note - \once \override NoteColumn #'force-hshift =
> #xx.
>
>
>
> Neither worked. What should I do now?
>
>
>
> Thank you.
>
>
>
> Mark



Hi Mark,

the << \\ >> construct fails in complicated situations quite often.
Better use some (perhaps named) \new Voice together with \voiceXxx.

\version "2.16.2"

global = {
  \key g \minor
  \time 2/2
}

rightOne = \relative c'' {
  \global

  \voiceOne
  g1~ | g |

}

rightTwo = \relative c'' {
  \global

  \voiceFour
  < d, f >8 d g, d' f d
  \voiceThree
  g,^[ d'] |
  f4. d8 f4. d8

}

rightThree = \relative c'' {
  \global

  \voiceTwo
  s2. g,4~ | g1

}
left = \relative c' {
  \global

  b,,8 g' d' g, b, g' d' g, |
  b, g' d' g, b, g' d' g, |

}

\score {
  \new PianoStaff <<
    \new Staff = "right" <<
    \new Voice \rightOne
    \new Voice \rightTwo
    \new Voice \rightThree
    >>

    \new Staff = "left" { \clef bass \left }
  >>

}

HTH,
  Harm



reply via email to

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