Re: Help with my Lilypond-Latex issue

2010-08-19 Thread Graham Percival
On Thu, Aug 19, 2010 at 10:43:59PM -0700, Marc Schonbrun wrote: > You are a gentleman and a scholar! It worked! Thank you so very much. I'm also infamously grumpy, and you just top-posted. And forgot to CC the mailing list. > Now -- can I do that globally somewhere so I don't have to do it at e

Re: Help with my Lilypond-Latex issue

2010-08-19 Thread Graham Percival
On Thu, Aug 19, 2010 at 09:16:21PM -0700, Marc Schonbrun wrote: > So, all of a sudden, my example is smaller and no longer taking up the entire > width of the page. I'd like to find a way to get this to look right without > having to add extra code to each example (since each example is almost >

Re: Next sheet music question - chords and lyrics no melody

2010-08-19 Thread M Watts
On 08/20/2010 11:07 AM, Stephen Nesbitt wrote: All: Ok, my next Lilypond stumper (at least to me). Is it possible to generate sheets that comprise lyrics plus chord changes *without* the need to specify (or display) the melody. Something like this: G D/F# Em7 Am C A lon

Next sheet music question - chords and lyrics no melody

2010-08-19 Thread Stephen Nesbitt
All: Ok, my next Lilypond stumper (at least to me). Is it possible to generate sheets that comprise lyrics plus chord changes *without* the need to specify (or display) the melody. Something like this: G D/F# Em7 Am C A long, long time ago I can still re-member h

Rewiting rules

2010-08-19 Thread afshin
Hi Any advice on how to achieve the following in LilyPond Automatically "for a given pattern of N notes redo the typesetting to put each occurrence of the pattern on a separate staff. making sure to have all other notes still follow the said pattern. " There are many other extensions to this i

Fwd: two problems regarding harp part

2010-08-19 Thread Damian leGassick
Begin forwarded message: From: Damian leGassick Date: 19 August 2010 11:11:05 BST To: 胡海鹏 - Hu Haipeng Subject: Re: two problems regarding harp part Hello Haipeng if you comment out the right hand's \showStaffSwitch it works fine perhaps this is a bug? maybe you can't have two of them in

Re:Re: Re: two problems regarding harp part

2010-08-19 Thread 胡海鹏 - Hu Haipeng
Xavier Scheuer wrote: > I have sent 2 bugs reports to Joe and to bug-lilypond: Thanks. > Your programming error: no note heads for the line spanner on neighbor > line seem related to \showStaffSwitch used simultaneously with > \glissando ... But I ever wrote many harp gliss with staff changes

Re: notation for tongueram

2010-08-19 Thread Robin Bannister
Stefan Thomas wrote: Would it be possible to make work a bit easier? Try doing it all in Scheme. tongueram = #(define-music-function (parser location mus) (ly:music?) (begin (set! (ly:music-property mus 'parenthesize) #t) (set! (ly:music-property mus 'tweaks) (acons 'style 'tr

even horizontal spacing

2010-08-19 Thread Marek Klein
Hi, I would like to get even horizontal spacing for all notes disregarding the duration. For example for d2 c4 e2 f1 I would like to get the result as with d2*1/2 c4 e2*1/2 f1*1/4 How could I get this automaticaly? Marek -- Marek Klein http://gregoriana.sk

Re: Re: two problems regarding harp part

2010-08-19 Thread Xavier Scheuer
2010/8/19 胡海鹏 - Hu Haipeng : > > 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

Re: overrideBeamSettings not working in 2.13.30

2010-08-19 Thread Hans Aberg
On 19 Aug 2010, at 16:25, Carl Sorensen wrote: ... 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

Re: overrideBeamSettings not working in 2.13.30

2010-08-19 Thread Carl Sorensen
On 8/19/10 8:17 AM, "Hans Aberg" wrote: > 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 us

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 pa

Re: overrideBeamSettings not working in 2.13.30

2010-08-19 Thread Carl Sorensen
On 8/19/10 3:12 AM, "Hans Aberg" 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 {

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 b

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, w