Am 20.09.2010 um 10:53 schrieb Dmytro O. Redchuk:

On Sat 18 Sep 2010, 16:47 Patrick Schmidt wrote:
It looks to me as if this strange behaviour is caused by the
No, with no \voiceTwo lilypond produces wrong picture, too (dots can not be
moved).

Thank you, Patrick and Vicente, i've added this as 1266:
http://code.google.com/p/lilypond/issues/detail?id=1266

\voiceTwo-command. It also happens with \voiceFour. For now you
could use \stemDown instead of \voiceTwo or:

\override Voice.Dots #'staff-position = #1.0
Thanks, i'll try this. But.. In chords there can be "a lot of dots",
i would not like them to be in position 1.0 ? :O(

--
  Dmytro O. Redchuk
  Bug Squad

Hm, this is my test file and the results I get with v. 2.13.33:
\version "2.13.33"  % 2.12 does the same

\relative c'' {
  \time 3/4
  \voiceTwo
  % neither of two works:
  \override Dots #'direction = #DOWN
  \override Staff.DotColumn #'direction = #DOWN
  <b e,>2. ~
  <b e,>2.
}

\relative c'' {
  \time 3/4
  \voiceTwo
  % neither of two works:
  %\override Voice.Dots #'direction = #DOWN
  \override Voice.Dots #'staff-position = #1.0
  %\override Staff.DotColumn #'direction = #DOWN
  <b e,>2. ~
  <b e,>2.
}



\score {
  \new Staff \relative c '' {
    \new Voice {
      %\voiceTwo
      <b e,>2. ~
      <b e,>2.
    }
  }
}


music = \relative c'' {
  \voiceTwo
  <b e,>2. ~
  <b e,>2.
}
\score {
  \new Staff {
    \new Voice {
      \music
    }
  }
}

music = \relative c'' {
  \voiceFour
  <b e,>2. ~
  <b e,>2.
}
\score {
  \new Staff {
    \new Voice {
      \music
    }
  }
}

music = \relative c'' {
  \stemDown
  <b e,>2. ~
  <b e,>2.
}
\score {
  \new Staff {
    \new Voice {
      \music
    }
  }
}

Attachment: dots-down.pdf
Description: Adobe PDF document


_______________________________________________
bug-lilypond mailing list
bug-lilypond@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to