KDE and platforms

2009-01-03 Thread 胡海鹏 Hu Haipeng
Hello, I'm about to download Frescobaldi, but I don't know whether Kde is for all platforms or Linux only. I want to speed up my structure construction (to say, a large orchestral score's stave structure--Orchestrallily has many limitations), but LilyPondTool uses Java, which can't be

Re: First Frog Task

2009-01-03 Thread Valentin Villenave
2009/1/3 Carl D. Sorensen c_soren...@byu.edu: I'm sure that some of you will say How can I document a function when I don't know what it does? Good question. My first answer is that you search in the Notation Reference and the Learning Manual to see where the function is used. That should

Re: Writing above a bar

2009-01-03 Thread Alberto Simões
Hello, all THanks for the answers. \mark{End}\bar|| did the trick ;) Cheers Alberto Nick Payne wrote: This is what I do at the start of a piece to move a string tuning indication down and left to underneath the clef symbol: \once \override TextScript #'extra-offset = #'( -7.5 . 2.5

Pdf Toolkit on Fedora 9 and 10

2009-01-03 Thread M Watts
Pdf Toolkit (http://www.pdfhacks.com/pdftk/) is a handy commandline tool for manipulating pdfs. It's useful for extracting pages from Lilypond-generated pdfs; adding pretty titlepages made with (ahem) other apps; inserting the odd page of real Lilypond output into pdfs made with OOo; and

Re: LilyPondTool-2.12-r1 for download

2009-01-03 Thread Bertalan Fodor
Thanks, it is contributed code, so I can't say right now why this happens. Though it is not so bad :-) At least for a complicated slur tweak you get a close idea. Anyway, I will try to fix it. Could you create a bug tracker on http://www.sourceforge.net/projects/lily4jedit? Cheers, Bert

Re: rearrange music flow

2009-01-03 Thread Antanas Budriūnas
Sorry, I feel myself not yet ready for froging because such simple task makes me trouble. Slightly modifying Carl's function I tend to include lyrics into parallel staves function. I can't understand what should be in place of 'ly:xxx?' as variable's type? parallelStaffs = #(define-music-function

Re: Fragment with broken/torn/shredded staff lines

2009-01-03 Thread Antanas Budriūnas
2008/12/30 MonAmiPierrot pierofaust...@hotmail.com Hello all, I need to produce a lot of small excerpts for a musicological thesis, and I'm wondering if there's a way to draw a torn, broken end (and/or beginning) of a staff, as if the paper had been shredded leaving each of its 5 lines an

Re: rearrange music flow

2009-01-03 Thread Carl D. Sorensen
Antanas, On 1/3/09 9:21 AM, Antanas Budri?nas antan...@gmail.com wrote: Sorry, I feel myself not yet ready for froging because such simple task makes me trouble. Slightly modifying Carl's function I tend to include lyrics into parallel staves function. I can't understand what should be in

Lilypond and Texshop

2009-01-03 Thread Hasi
Hi everybody, I keep getting this message tcsh: cp: No match. Python 2.4 or newer is required to run this program. Please upgrade Python from http://python.org/download/, and if you use MacOS X, please read 'Setup for MacOS X' in Application Usage. when I use Lilypond-Latex with Texshop. I have

Re: LilyPond Grand Organization Project: ongoing jobs

2009-01-03 Thread Daniel Hulme
On Thu, Jan 01, 2009 at 01:40:09AM -0800, Graham Percival wrote: *Git help for writers We often receive reports of typos and minor text updates to the documentation. It would be great if somebody could create properly-formatted patches for these corrections. Technical requirements:

Missing petrucci-f clef (and other missing clefs)

2009-01-03 Thread Stefan Waler
Hi, lilypond provides one petrucci style f clef (called petrucci-f). Unfortunately, this is not really sufficient: similar to the C clefs, f clefs can be placed on various staff lines. Lilypond provides different f clefs for modern notation (bass, subbass, varbaritone) but not for petrucci

Re: Missing petrucci-f clef (and other missing clefs)

2009-01-03 Thread Werner LEMBERG
lilypond provides one petrucci style f clef (called petrucci-f). Unfortunately, this is not really sufficient: similar to the C clefs, f clefs can be placed on various staff lines. Lilypond provides different f clefs for modern notation (bass, subbass, varbaritone) but not for petrucci

Re: Missing petrucci-f clef (and other missing clefs)

2009-01-03 Thread Laura Conrad
Stefan == Stefan Waler ste...@waler.at writes: Stefan lilypond provides one petrucci style f clef (called Stefan petrucci-f). Stefan Unfortunately, this is not really sufficient: similar to Stefan the C clefs, f clefs can be placed on various staff lines. Here's the way I get

RE: Writing above a bar

2009-01-03 Thread Nick Payne
Thanks for pointing that out. I hadn't realized it was there in the viewer. Nick -Original Message- From: Bertalan Fodor [mailto:lilypondt...@organum.hu] Sent: Sunday, 4 January 2009 00:34 To: Nick Payne; al...@alfarrabio.di.uminho.pt Cc: 'lilypond' Subject: Re: Writing above a bar

Lyrics above bars

2009-01-03 Thread Hasi
The subject titel says it: Can I put lyrics above the bars/notes instead of underneath? ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

stems up?

2009-01-03 Thread Ivo Bouwmans
Hallo all, I try to get both upper notes (e'') in the following fragment to have their stems upward. Nor voiceOne nor stemUp seems to work: { { \voiceOne e''2. } { \voiceTwo a'2~a'8[ b'] } { \stemUp e''2.\fermata } { \stemDown b'2.\fermata } } \version 2.12.1 % necessary for

Re: stems up?

2009-01-03 Thread Kieren MacMillan
Hello Ivo, What am I doing wrong? You need to create a new Voice context to handle it — the modified snippet is attached. HTH! Kieren. \version 2.12.1 theMusic = { { \voiceOne e''2. } \new Voice { \voiceTwo a'2~a'8[ b'] } { \voiceOne e''2.\fermata } \new Voice { \voiceTwo b'2.

Re: stems up?

2009-01-03 Thread matth
You can also (I think it's just a sort of shortcut) add the double slash between the two voices. { { \voiceOne e''2. } \\ { \voiceTwo a'2~a'8[ b'] } { \stemUp e''2.\fermata } \\ { \stemDown b'2.\fermata } } -- The Shady Lane Publishing : http://theshadylanepublishing.googlepages.com

Re: stems up?

2009-01-03 Thread Kieren MacMillan
Hi Matt and Ivo, You can also (I think it's just a sort of shortcut) add the double slash between the two voices. I don't recommend that option… If you want a shortcut, define split = #(define-music-function (parser location upper lower ) (ly:music? ly:music? ) #{ { \voiceOne $upper }

Re: Frescobaldi on Fedora

2009-01-03 Thread Michael Droettboom
For me (also on FC10), yum install kdegraphics (as root) did the trick. You probably also want to install kdebase so the built-in terminal works. Mike On Sat, Jan 3, 2009 at 10:38 AM, Martin Tarenskeen m.tarensk...@zonnet.nl wrote: Hi, I'm trying to build, install, and use Frescobaldi on my

Re: Fragment with broken/torn/shredded staff lines

2009-01-03 Thread Mark Polesky
Piero, I've cooked up a way of tearing the right side of the staff, which you can take a look at. Presumably tearing the left side of the staff shouldn't be too much harder, but I don't have time to look at it right now. I've included a lilypond file for you to experiment with. Play around with

Re: stems up?

2009-01-03 Thread Ivo Bouwmans
Hallo Matth Kieren, Thanks for your suggestions! They led to the simplest solution: don't use voiceOne/voiceTwo or stemUp/stemDown in the first place, but use \\ only: { { e''2. } \\ { a'2~a'8[ b'] } { e''2.\fermata } \\ { b'2.\fermata } } I said I suspected to be doing things in a

Re: Frescobaldi on Fedora

2009-01-03 Thread Martin Tarenskeen
Thank you. That indeed did the trick. On Sat, Jan 03, 2009 at 05:53:49PM -0500, Michael Droettboom wrote: For me (also on FC10), yum install kdegraphics (as root) did the trick. You probably also want to install kdebase so the built-in terminal works. Mike On Sat, Jan 3, 2009 at 10:38

Multi-stave TextSpanner line

2009-01-03 Thread Nick Payne
I have a TextSpanner where I draw a small vertical line at the end of the TextSpanner line. Where the line continues for more than one stave, The small vertical line is being drawn at the end of each stave. I'd prefer that it only get drawn where the spanner line actually ends. Can this be done? I