Re:Re: two problems regarding harp part

2010-08-19 Thread 胡海鹏 - Hu Haipeng
Dear Phil:

 I can confirm that compiling this music produces a number of errors...
 the score is too complex to have any chance of working out whether this is a 
 bug or expected behaviour owing to errors in the music.  I tried commenting 
 out parts of the music but with no success.
 
Yeah, when I deleted music before rehearsal 6, all errors except couldn't fit 
music on page go away. But the previous music has no problem when the other 
half is deleted. Thus, Lilypond is playing Hide-And-See with me!!!
Which expert can fix it? I think it's the strangest thing I have met in my life 
:-)

Haipeng

 ___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: overrideBeamSettings not working in 2.13.30

2010-08-19 Thread Hans Aberg

On 19 Aug 2010, at 05:24, Carl Sorensen wrote:


If you don't want to do \overrideTimeSignatureSettings, it would be
sufficient to do

\time 9/16
\set beatStructure = #'(4 2 3)

because the \time call resets beatStructure.


That does not work: I get 3+3+3 on that one, too. So perhaps there is
a bug here.



\version 2.13.30

{
 \time 9/16
 \set beatStructure = #'(4 3 2)
 \repeat unfold 9 {c''16}
}

this gives the attached .png.

If it's not working for you, please submit a file that shows the  
problem.


It appears when I do this (MIDI part not necessary - just shows  
motivation for code setup):


\version 2.13.30

music = \new Staff 
 \time 9/16
 \set beatStructure = #'(4 2 3)
% \set beatStructure = #'(4 3 2)
 \repeat unfold 9 {c''16}


\score {
  \music
  \layout {}
}

\score {
  \unfoldRepeats \music
  \midi {}
}


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: overrideBeamSettings not working in 2.13.30

2010-08-19 Thread Carl Sorensen
On 8/19/10 3:12 AM, Hans Aberg haber...@telia.com wrote:

 
 It appears when I do this (MIDI part not necessary - just shows
 motivation for code setup):
 
 \version 2.13.30
 
 music = \new Staff 
   \time 9/16
   \set beatStructure = #'(4 2 3)
 % \set beatStructure = #'(4 3 2)
   \repeat unfold 9 {c''16}
 
 
 \score {
\music
\layout {}
 }
 
 \score {
\unfoldRepeats \music
\midi {}
 }
 


beatStructure is set *per voice*, and since you have parallel music in the
staff, you are creating 3 different voices in the staff, one of which has
#'(4 2 3) beaming but no notes.  By using braces to combine things
sequentially instead of in parallel, it works properly.

music = \new Staff 
  {
  \time 9/16
  \set beatStructure = #'(4 2 3)
% \set beatStructure = #'(4 3 2)
  \repeat unfold 9 {c''16}
  }
 

\score {
   \music
   \layout {}
}

\score {
   \unfoldRepeats \music
   \midi {}
}

HTH,

Carl





___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: overrideBeamSettings not working in 2.13.30

2010-08-19 Thread Hans Aberg

On 19 Aug 2010, at 15:38, Carl Sorensen wrote:

beatStructure is set *per voice*, and since you have parallel music  
in the
staff, you are creating 3 different voices in the staff, one of  
which has

#'(4 2 3) beaming but no notes.  By using braces to combine things
sequentially instead of in parallel, it works properly.

music = \new Staff 
 {
 \time 9/16
 \set beatStructure = #'(4 2 3)
% \set beatStructure = #'(4 3 2)
 \repeat unfold 9 {c''16}
 }


Thank you. But then this does not work:
music = \new Staff 
{
 \time 9/16
 \set beatStructure = #'(4 3 2)
 \repeat unfold 9 {a'16}
}
{
 \time 9/16
 \set beatStructure = #'(4 2 3)
 \repeat unfold 9 {c''16}
}


Though this does:

music = \new Staff 
\new Voice = foo {
 \time 9/16
 \set beatStructure = #'(4 3 2)
 \repeat unfold 9 {a'16}
}
\new Voice = bar {
 \time 9/16
 \set beatStructure = #'(4 2 3)
 \repeat unfold 9 {c''16}
}



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user