lilypond-book

2012-04-23 Thread MING TSANG
Is it possible to execute lilypond-book in frescobaldi v2.04?   Blessing in+, Ming.___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: barcheck warning when using Timing.measurePosition in polyphonic music

2012-04-23 Thread Federico Bruni
Il 23/04/2012 01:53, Nick Payne ha scritto: If you replace \set Timing.measurePosition = #(ly:make-moment -2 4) with \set Score.measureLength = #(ly:make-moment 2 4) you don't get a barcheck error. Thanks, this is what I was looking for. I've noticed that - unlike measurePosition - measure

Re: conditional branch within scheme

2012-04-23 Thread Stefan Thomas
Dear Jan-Peter, thanks! It was exactly, what I wanted! Am 23. April 2012 20:10 schrieb Jan-Peter Voigt : > Dear Stefan, > > here's a try, that has a parameter dir, which takes a symbol. If the > symbol equals 'above, the Staff is aligned above, else below: > --snip-- > \version "2.14.2" > ossiast

Sustain pedal question.

2012-04-23 Thread Hwaen Ch'uqi
Greetings All, When set to bracket style, the spanner seems broken in this passage which utilizes spacer rests, a cross-staff voice, and a \times command. In the first two measures, it ends at the fourth beat instead of continuing to the downbeat of the next measure. The third measure is

Re: conditional branch within scheme

2012-04-23 Thread Jan-Peter Voigt
Dear Stefan, here's a try, that has a parameter dir, which takes a symbol. If the symbol equals 'above, the Staff is aligned above, else below: --snip-- \version "2.14.2" ossiastaff = #(define-music-function (parser location x dir y) ( string? symbol? ly:music? ) (let ((align (if (eq? 'above d

Re: multiple tags

2012-04-23 Thread Gilles
Is is possible to have simultaneous multiple tags? What makes you think that? As i had difficulties managing multiple tags, i have made for me some little functions to simplify it. With the joined file, your code would become, with the \keepWithTags : %% \include "tagUtil.ly" control = {

conditional branch within scheme

2012-04-23 Thread Stefan Thomas
Dear community, I've written some scheme-code for making it easier to create ossia-staffs. The syntax for the code I've created is \ossiastaff "staffname" { music} It works fine but now it works only for ossia-staffs above. I would prefer a syntax like \ossiastaff "staffname" "above" (or below) { m

Fwd: Re: parenthesizing arpeggios

2012-04-23 Thread Urs Liska
Thanks again very much. I checked it out and it works perfectly! Just for the record (or anybody who searches), this is what I did: \version "2.15.36" parenthArpeggio= { \once \override Arpeggio #'stencil = #(lambda (grob) (parenthesize-stencil (ly:arpeggio::print grob) 0.1 0.5 0.5 0.2))