Re: The best way to structure multi-file projects?

2010-12-16 Thread Nick Payne
On 17/12/10 16:54, Keith OHara wrote: I am easily confused, so I keep the structure (\bookpart \score \new Staff, etc.) in one file where I can see it all at once. This means that I need to use {% %} to switch on/off typesetting of pieces (instead of a single-line %) but that is easy enough. I

Re: The best way to structure multi-file projects?

2010-12-16 Thread Keith OHara
Frank Steinmetzger gmx.de> writes: > This work (namely Bach’s Mass in B minor, BWV 232) has 27 pieces, hence I wanted to make it as easy as possible to work on single pieces at a time, but also to compile the whole thing. > > So, of course, each piece is in an own file again. But this time, I

Re: How to print 2 rehearsal marks above and below same bar line

2010-12-16 Thread Jan Warchoł
2010/12/16 James : > Is it easy to display those nice lines around the bounding boxes by > adding a \paper { } variable? > > I can only find > \paper { annotate-spacing = ##t } > Which gives the arrows/values. you have to use this: #(ly:set-option 'debug-skylines #t) (in top-level). I don't know

Re: bar number printed above the phrase (slur) curve

2010-12-16 Thread Jan Warchoł
2010/12/16 MING TSANG : > Hi, Janek: > > Thank you for the solution.   That means I need to tune up after the score > sheet is completed for the large score. > Is there a parameter that will put the bar number just above the staff / bar > line? You can use \override Score.BarNumber #'outside-sta

Re: Organ pedalboard fingerings

2010-12-16 Thread Music Teacher
Hi organists, Dupré and more or less all the french school uses the Dupré heel-symbol (the boolean U), Fernando Germani like in this last link uses a circle for heels, Pedal has 30 notes (C-f') in continental Europa, many organs from the romantic has still 27 notes (C-d') and many organs in south

Re: Organ pedalboard fingerings

2010-12-16 Thread Carl Sorensen
On 12/16/10 4:17 PM, "Bertrand Bordage" wrote: > Something quite better : > http://books.google.com/books?id=c9x1XBrdwuIC&lpg=PP1&pg=PA4#v=onepage&q&f=fal > se > e&q&f=false> Yes -- page 4 shows the regular and inverted

Re: The best way to structure multi-file projects?

2010-12-16 Thread Frank Steinmetzger
On Thursday 16 December 2010 18:48:27 Phil Holmes wrote: > Frank, > > The example you've posted seems to work as expected. Is there something > you feel is wrong with the approach you use here? Indeed, it doth work. For now I have done 8 pieces with 48 pages altogether, and it already takes Lil

Re: The best way to structure multi-file projects?

2010-12-16 Thread Phil Holmes
Frank, The example you've posted seems to work as expected. Is there something you feel is wrong with the approach you use here? -- Phil Holmes - Original Message - From: Frank Steinmetzger To: lilypond-user@gnu.org Sent: Thursday, December 16, 2010 12:00 AM Subject: The

Re: bar number printed above the phrase (slur) curve

2010-12-16 Thread Patrick Karl
> > Message: 1 > Date: Thu, 16 Dec 2010 09:34:54 +0100 > From: Jan Warcho? > Subject: Re: bar number printed above the phrase (slur) curve > To: MING TSANG > Cc: lilypond-user > Message-ID: > > Content-Type: text/plain; charset=UTF-8 > > 2010/12/16 MING TSANG : >> >> Is it possible to

Re: bar number printed above the phrase (slur) curve

2010-12-16 Thread MING TSANG
Hi, Janek: Thank you for the solution. That means I need to tune up after the score sheet is completed for the large score. Is there a parameter that will put the bar number just above the staff / bar line? Ming. From: MING TSANG To: Jan Warchoł Cc:

Re: how to write a scheme function to override glissando properties

2010-12-16 Thread Patrick Schmidt
Am 14.12.2010 um 20:16 schrieb Marc Hohl: Am 14.12.2010 14:25, schrieb Patrick Schmidt: Hi all, Hi Patrick, I noticed that glissandi are quite often hardly visible in a Staff- context. There is also a huge difference in the look of glissandi in Staff- and TabStaff-contexts. I'd like to w

Re: Writhing an non vocal letter before the tone in Lyrics

2010-12-16 Thread Marek Klein
Hi Stjepan, 2010/12/16 Stjepan Horvat > Hello, Is there a solution for my problem?! I'm from Croation and am > writing a > song-book for my friend..In Croation language we use consonant's before a > word.. > > An example: > > A phrase "s tobom" means "with you" but the letter "s" does not go und

Re: nested variables in scheme

2010-12-16 Thread Rob Canning
jakob lund said : > 2010/12/16 Rob Canning : > > David Kastrup said : > >> r...@goto10.org writes: > >> > >> > beza #0.4 > >> > > >> > feeding into something like this: (which doesn't work) > >> > > >> > beza =  #(define-music-function (parser location thickness) (number?) > >> >    #{ > >> > \bezi

Re: nested variables in scheme

2010-12-16 Thread jakob lund
2010/12/16 Rob Canning : > David Kastrup said : >> r...@goto10.org writes: >> >> > beza #0.4 >> > >> > feeding into something like this: (which doesn't work) >> > >> > beza =  #(define-music-function (parser location thickness) (number?) >> >    #{ >> > \bezier #'( 0.1  1.0 0.15  1.0 $number ) >> >

Re: nested variables in scheme

2010-12-16 Thread Rob Canning
David Kastrup said : > r...@goto10.org writes: > > > beza #0.4 > > > > feeding into something like this: (which doesn't work) > > > > beza = #(define-music-function (parser location thickness) (number?) > >#{ > > \bezier #'( 0.1 1.0 0.15 1.0 $number ) > > #}) > > What happens if you write

Re: bar number printed above the phrase (slur) curve

2010-12-16 Thread Jan Warchoł
2010/12/16 -Eluze : > > using Score.BarNumber might help! Silly me :) of course i should have used Score.BarNumber. So, Ming, here is the final solution: add \once \override Score.BarNumber #'outside-staff-priority = ##f before every bar number that should be below the slur. You can also use

Re: nested variables in scheme

2010-12-16 Thread rob
> - Original Message - > From: > To: > Sent: Thursday, December 16, 2010 1:10 PM > Subject: nested variables in scheme > > >> beza #0.4 >> >> feeding into something like this: (which doesn't work) >> >> beza = #(define-music-function (parser location thickness) (number?) >> #{ >> \bezi

Re: bar number printed above the phrase (slur) curve

2010-12-16 Thread MING TSANG
Hi, Janek' Thank you for your patient. I thought my sample is simple. Will remember next time. Here is the tiny example again: (with your suggestion) \version "2.13.40" \relative c''{ \override Score.BarNumber #'break-visibility = #'#(#t #t #t) \override BarNumber #'avoid-slur = #'inside

Re: nested variables in scheme

2010-12-16 Thread David Kastrup
r...@goto10.org writes: > beza #0.4 > > feeding into something like this: (which doesn't work) > > beza = #(define-music-function (parser location thickness) (number?) >#{ > \bezier #'( 0.1 1.0 0.15 1.0 $number ) > #}) What happens if you write $thickness instead? -- David Kastrup ___

Re: nested variables in scheme

2010-12-16 Thread Phil Burfitt
- Original Message - From: To: Sent: Thursday, December 16, 2010 1:10 PM Subject: nested variables in scheme beza #0.4 feeding into something like this: (which doesn't work) beza = #(define-music-function (parser location thickness) (number?) #{ \bezier #'( 0.1 1.0 0.15 1.0 $n

nested variables in scheme

2010-12-16 Thread rob
sorry about previous untitled mail - knocked the send button by accident :/ hi! i have a definition that takes a list as an argument \include "bezier.ly" beza = { \bezier #'( 0.1 1.0 0.15 1.0 0.5 ) } i would like to be able to assign one of the elements of the list with a variable like thi

[no subject]

2010-12-16 Thread rob
hi! i have a definition that takes a list as an argument \include "bezier.ly" beza = { \bezier #'( 0.1 1.0 0.15 1.0 0.5 ) } i would like to be able to assign one of the elements of the list with a variable like this beza #0.4 feeding into something like this beza = #(define-music-functio

Re: How to print 2 rehearsal marks above and below same bar line

2010-12-16 Thread James
Hello, On 15/12/2010 22:35, Neil Puttock wrote: The image show why using extra-offset as a workaround is a very bad idea unless you're only tweaking small elements inside a stave: the ReheasalMark's bounding box doesn't move. Umm.. Is it easy to display those nice lines around the bounding bo

Re: How to print 2 rehearsal marks above and below same bar line

2010-12-16 Thread James
Hello On 15/12/2010 22:35, Neil Puttock wrote: On 15 December 2010 16:06, Phil Holmes wrote: And this is what the LSR preview shows. By default, I believe the LSR only outputs a single line, and so that may be why you see more than we get with the LSR. It can be set to give a whole page, bu

Writhing an non vocal letter before the tone in Lyrics

2010-12-16 Thread Stjepan Horvat
Hello, Is there a solution for my problem?! I'm from Croation and am writing a song-book for my friend..In Croation language we use consonant's before a word.. An example: A phrase "s tobom" means "with you" but the letter "s" does not go under the tone. So i tried to do something like s_tobom

Re: Inner and outer margins

2010-12-16 Thread James
hello, From: Paul Scott Subject: Re: Inner and outer margins Date: Sun, 27 Jun 2010 01:16:01 -0700 User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.10) Gecko/20100619 Icedove/3.0.5 On 06/27/2010 1

Re: Line spacing inconsistency

2010-12-16 Thread James
Hello, From: Neil Puttock Subject: Re: Line spacing inconsistency Date: Sat, 25 Sep 2010 16:22:38 +0100 On 22 September 2010 16:27, Phil Holmes wrote: Originally posted to .devel in error: Is it a known fea

Re: bar number printed above the phrase (slur) curve

2010-12-16 Thread -Eluze
Jan Warchoł wrote: > > > I also tried adding some Y-offset, but it doesn't work at all - a bug? > see this, the bar number doesn't move at all: > > \version "2.13.40" > \relative c''{ > \override BarNumber #'Y-offset = #5.0 > c c c c \break c c c c > } > > My knowledge ends here. Can anyone w

Re: Specifying bezier curve for tie across line break collideswithclef symbol

2010-12-16 Thread Nick Payne
Trevor Thanks. With that I can generalise it a bit further to be used with any sort of spanner: #(define ((grob2-extra-offset offset) grob) (let* ( (orig (ly:grob-original grob)) (siblings (if (ly:grob? orig) (ly:spanner-broken-into orig) '(

Re: dynamic alignment

2010-12-16 Thread Jan-Peter Voigt
Thank you Neil, so I applied this to my little script and will post this to LSR :-) The question of Ralph Palmer ("Unexpected \markup behavior") made me think of this. So my next step is to build this with a whiteout-option. Simple whiteout is trivial, but with padding, there has to more calcul

Re: Specifying bezier curve for tie across line break collideswithclef symbol

2010-12-16 Thread Trevor Daniels
Hi Nick Yes, it's possible to generalise it, although the way to do it is not easy to guess (nothing in scheme is easy to guess, I find). Try: #(define ((tie2-extra-offset offset) grob) (let* ( (orig (ly:grob-original grob)) (siblings (if (ly:grob? orig)

Re: bar number printed above the phrase (slur) curve

2010-12-16 Thread Jan Warchoł
2010/12/16 MING TSANG : > > Is it possible to line up all bar number just above the staff / bar line, > especially bar 2, 4 and 5 which is on top of the phrase curve? > > Here is a simpler example. > [65 lines of code] Ming, you really miss the point of tiny examples. Have you read carefully the l