lilypond-user
[Top][All Lists]
Advanced

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

Re: temporarily disable Dot_column_engraver?


From: Mark Polesky
Subject: Re: temporarily disable Dot_column_engraver?
Date: Wed, 25 Jun 2014 10:14:13 -0700

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. >>
    }  
  }
}

Attachment: DotColumn-in-Voice.png
Description: PNG image


reply via email to

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