bug-lilypond
[Top][All Lists]
Advanced

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

instrumentCueName prints twice


From: James Worlton
Subject: instrumentCueName prints twice
Date: Wed, 3 Nov 2010 13:57:38 +0000 (UTC)
User-agent: Loom/3.14 (http://gmane.org/)

> I'm not top posting.

Hello,

The following code produces the instrumentCueName twice:

\version "2.13.38"
\addInstrumentDefinition #"two"
  #`((instrumentTransposition . ,(ly:make-pitch -1 0 0))
     (clefGlyph . "clefs.G")
     (clefOctavation . 0)
     (middleCPosition . -6)
     (clefPosition . -2)
     (instrumentCueName . ,(markup "Instr. Two")))

notes = \relative c' { c1 }
\score { 
    \new Staff = "one" { 
        \set Staff.instrumentName = "One "
        \notes
        \instrumentSwitch "two"
        \notes
    }           
}

However, if the \notes variable is removed and the notes are added directly into
the \score block, the duplication does not happen:

\version "2.13.38"
\addInstrumentDefinition #"two"
  #`((instrumentTransposition . ,(ly:make-pitch -1 0 0))
     (clefGlyph . "clefs.G")
     (clefOctavation . 0)
     (middleCPosition . -6)
     (clefPosition . -2)
     (instrumentCueName . ,(markup "Instr. Two")))

\score { 
    \new Staff = "one" { 
        \set Staff.instrumentName = "One "
        c'1
        \instrumentSwitch "two"
        c'1
    }           
}




reply via email to

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