lilypond-user
[Top][All Lists]
Advanced

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

Re: partcombine/instrumentName problem


From: Gilles THIBAULT
Subject: Re: partcombine/instrumentName problem
Date: Mon, 1 Jun 2009 18:50:09 +0200

 
\score {
   \new Staff \with {
         printPartCombineTexts = ##f
         midiInstrument = "bassoon"
         instrumentName = "Bassoon"
         shortInstrumentName = "Bass."
      } << \partcombine \bassoonOne \bassoonTwo >>
}
 
This solution seems to work great.
I think that the strange behaviour of \partCombine is related to \grace notes
Here is a little example :
 
%%%%
partA = \relative { \grace { fis8 } g1 }
partB = \relative { \grace { dis8 } e1 }

\score {
 <<
    \new Staff {
        %% here it's work
        \partcombine \partA \partB
 
     }
    \new Staff {
        %% here it's doesn't work
        \set Staff.instrumentName = "bassoon" 
        \partcombine \partA \partB
    }
 >>
}
%%%%%
 
Gilles

reply via email to

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