Keith OHara wrote:
> Put the small notes in a temporary Voice and give that
> Voice a Dot_column_engraver.
>
> Having this engraver in both a Voice and Staff is not
> problem here.  You get two DotColumns, but that is what
> you want, and the Dots that are caught by the DotColumn in
> the Voice are not caught again by that in the Staff.

Keith,

Doing as you suggested puts the first dot directly *below*
the note head.  Am I doing something wrong with my code
here?

Thanks
- Mark

\version "2.19.9"

\new Staff \with {
} {
  \time 6/8
  \new Voice = "main" {
    \voiceOne
    <<
      \context Voice = "main" { <b' c''>2. }
      \new Voice = "small" \with {
        \consists Dot_column_engraver
      } {
        \voiceTwo
        \magnifyMusic 0.63 {
          \repeat tremolo 24 { e'64 g'64 }
        }
      }
    >>
    \context Voice = "main" {
      << <c' c''>2. \\ <f' a'>2. >>
    }
  }
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to