Re: crash on 10.4.11

2008-04-27 Thread Arjan Bos
If, as you say, the size has doubled, then it looks either like it has become a universal binary or that it has debugging info in it. Does it still work from the Terminal.app? Arjan Sent from my iPod On 27-apr-2008, at 0:24, Stan Sanderson <[EMAIL PROTECTED]> wrote: On Apr 26, 2008, at

Re: crash on 10.4.11

2008-04-27 Thread Valentin Villenave
2008/4/27 Stan Sanderson <[EMAIL PROTECTED]>: > Not so cheery, Added to the tracker just to make sure everyone notices it: http://code.google.com/p/lilypond/issues/detail?id=613 I think it will be fixed in a matter of days. Cheers, Valentin ___ lily

Moving a volta bracket vertically

2008-04-27 Thread Sven Axelsson
There seems to have been changes to the VoltaBracketSpanner that aligns the volta brackets to each other even with music of different height under them. This is good. However, I can't seem to find a way of moving them vertically myself anymore. I used to do: \override Score.VoltaBracket #'Y-of

Re: crash on 10.4.11

2008-04-27 Thread Stan Sanderson
On Apr 27, 2008, at 2:50 AM, Arjan Bos wrote: If, as you say, the size has doubled, then it looks either like it has become a universal binary or that it has debugging info in it. Does it still work from the Terminal.app? Yes, both 2.11.44-1 and 2.11.45-1 run without complaint from termina

Sibelius and Lilypond

2008-04-27 Thread Alberto Simões
Hi, folks I have a lot of musics already transcribed using the Sibelius, but the stupid commercial software doesn't have any export functionality. Neither for quasi-standards as MusicXML, or for other commercial software like Finale. Is there any known (good) way to convert sibelius music sh

Re: Sibelius and Lilypond

2008-04-27 Thread Valentin Villenave
2008/4/27 Alberto Simões <[EMAIL PROTECTED]>: > Is there any known (good) way to convert sibelius music sheets for > Lilypond, or is the best way to go through MIDI? Kirill was working on a sib2ly export plugin in 2006, but we haven't heard from him for some time... Otherwise, your only solution

Re: Sibelius and Lilypond

2008-04-27 Thread Alberto Simões
Hi, Valentin Valentin Villenave wrote: 2008/4/27 Alberto Simões <[EMAIL PROTECTED]>: Is there any known (good) way to convert sibelius music sheets for Lilypond, or is the best way to go through MIDI? Kirill was working on a sib2ly export plugin in 2006, but we haven't heard from him for so

Documentation suggestion: "what's new"

2008-04-27 Thread David Griffel
The Lilypond documentation has a "News" page, saying what is new since the last _major_ release. But it's not easy to see what is new since the last release. When 2.11.45 appeared, it would be nice to know how it differs from 2.11.44 - then I'd know whether it's worth upgrading. Maybe a full "r

Re: Documentation suggestion: "what's new"

2008-04-27 Thread Graham Percival
On Sun, 27 Apr 2008 14:03:45 -0700 (PDT) David Griffel <[EMAIL PROTECTED]> wrote: > The Lilypond documentation has a "News" page, saying what is new > since the last _major_ release. But it's not easy to see what is new > since the last release. When 2.11.45 appeared, it would be nice to > know

Re: In octaves

2008-04-27 Thread Jonathan Kulp
Hey guys, Just discovered another issue with the octaves command and wondered whether you could see an easy way out of it. When I use a cautionary accidental inside one of these octaves blocks, it only prints the accidental on the lower note of the 8ve pair. Any way to get it to show the ac

Re: In octaves

2008-04-27 Thread Jay Anderson
Use the following for the octave-up function. It should also now work correctly in \relative sections (but not outside unfortunately). #(define (octave-up m t) (let* ((octave (if (> t 0) 0 -2)) (new-note (ly:music-deep-copy m)) (new-pitch (ly:make-pitch octave

Re: In octaves

2008-04-27 Thread Jay Anderson
> Let me know how it works! A couple more changes: #(define (octave-up m t) (let* ((octave (1- t)) (new-note (ly:music-deep-copy m)) (new-pitch (ly:make-pitch octave (ly:pitch-notename (ly:music-property m 'pitch)) (ly:pitch-alteration (ly:music-pro

How to stack scripts and textscripts?

2008-04-27 Thread Peter Chubb
Hi, I'm trying to set a turn symbol with a natural sign over it and a flat sign under it. I tried: c''^\markup{\natural}^\turn^\markup{\flat} but the natural and flat signs always turn up next to each other, and the turn is above both. Any ideas? Playing with script-priority mov