Re: Translating tempo marks -- scheme question

2008-12-19 Thread Dmytro O. Redchuk
Thank you, Mark and Neil. I forget to notice once again that i am not a programmer, and my scripting experience if way far from programming scheme :-) However (therefore) you responses are very helpful, i will study them :-) 2008/12/19 Mark Polesky : > What's happening (I think) is: > Metronome_

Re:New LilyPondTool version available for testing

2008-12-19 Thread Tim Reeves
> Message: 3 > Date: Wed, 17 Dec 2008 15:41:05 +0100 > From: "Bertalan Fodor (LilyPondTool)" > Subject: Re: New LilyPondTool version available for testing > To: Tim Slattery > Cc: lilypond-user@gnu.org > Message-ID: <49490f81.8080...@organum.hu> > Content-Type: text/plain; charset="iso-8859-1" >

Re: trouble installing

2008-12-19 Thread steve berthiaume
i think i'm all set for now; i found a dotpup package of 2.10.11, and it seems to work well enough for me. i found it at http://dotpups.de/dotpups/Multimedia/Lilypond-2.10/ , and i downloaded (but didn't seem to need to install) the optional python add-on pup. i'd still like to know what i did to

hide notes and slurs also hide gliss

2008-12-19 Thread 胡海鹏 Hu Haipeng
Hello: I showed the full score of my song to my mother last evening, and she was very happy. But she said that my implementation failed, because the hidden notes and slurs also hide glissandi. In Chinese music, some notes will be sung or played with an ascending or descending end, thus a "tail

Re: New LilyPondTool version available for testing

2008-12-19 Thread Neil Puttock
2008/12/17 Valentin Villenave : > 2008/12/17 Neil Puttock : >> I can't see anything wrong with your patch; the `bigger' in >> declarations-init.ly is a constant for use in property overrides, e.g. >> fontSize = #bigger. > > Is this actually used? Doesn't look like it (certainly not in the docs); i

Re: workaround: keeping piano staves alive together in a RemoveEmptyStaffContext

2008-12-19 Thread Neil Puttock
2008/12/19 Andrew Hawryluk : > Would there be a way to move to the \RemoveEmptyEngraver to the > PianoStaff context in these cases? Not without rewriting the Hara_kiri_engraver, since you'll end up with all the staves inside the PianoStaff squashed into one VerticalAxisGroup. Regards, Neil

Re: New LilyPondTool version available for testing

2008-12-19 Thread Mark Polesky
Bert, anyway to turn off the reverse point-and-click? - Mark ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Translating tempo marks -- scheme question

2008-12-19 Thread Mark Polesky
Neil Puttock wrote: > More streamlining, since the dictionary is an alist: > > #(define (getLocalized items word) >(assoc-get word items word)) > While we're at it, we might as well replace (list '(a . b) '(c . d)) with '((a . b) (c . d)): #(define tempi '(("Adagio" . "Повільно") ("Al

Re: formatting two-note tremolo's

2008-12-19 Thread Neil Puttock
Hi Kristof, 2008/12/19 kristof : > after browsing a bit through the documentation, i thought something like > >\once \override StemTremolo #'slope = #0.3 >\once \override StemTremoloe #'X-extent = #5 >\once \override StemTremoloe #'Y-extent = #5 >

Re: Translating tempo marks -- scheme question

2008-12-19 Thread Neil Puttock
2008/12/19 Mark Polesky : > 2) use (null? items) instead of (equal? '() items) > 3) use (caar items) instead of (car (car items)) > 4) use (cdar items) instead of (cdr (car items)) More streamlining, since the dictionary is an alist: #(define (getLocalized items word) (assoc-get word items wo

Re: Translating tempo marks -- scheme question

2008-12-19 Thread Mark Polesky
Dmytro, This isn't stupid. What's happening (I think) is: Metronome_mark_engraver sees the exact same tempo command twice in a row, so it doesn't print the second one, since it's redundant. As if to say, "the tempo already *is* Allegretto, no need to reprint it." Off the top of my head, I don't

Re: flatten ties ~ proportional notation.

2008-12-19 Thread Neil Puttock
2008/12/19 Rob Canning : > > on its own this works fine but if i combine it with somthing else it fails - > not sure what i am doing wrong here... Hmm, it doesn't work with broken ties, since the left-broken part is attached to a paper column rather than a notehead (you can't retrieve a value for

Re: suppressing bar numbers at rehearsal marks?

2008-12-19 Thread Paul Scott
Mark Polesky wrote: Mats Bengtsson wrote: If you replace it by \once \override Score.BarNumber #'transparent = ##t, it should work. Sorry! Paul, alternatively you could use this solution: barNumberMark = { \once \override Score.BarNumber #'break-visibility = #'#(#f #f #f) \mark

Re: suppressing bar numbers at rehearsal marks?

2008-12-19 Thread Paul Scott
Mats Bengtsson wrote: Paul Scott wrote: If you have a good reason to do what you ask for, why not simply define a macro which both draws a rehearsal mark and does a \once \override BarNumber #'transparent = ##t I just gave that a quick test and it didn't seem to eliminate the bar numbers. If

Translating tempo marks -- scheme question

2008-12-19 Thread Dmytro O. Redchuk
Hi, i asked some question about tempo marks translation some time ago. So, i've tried to find a solution, and now i need help (and suggestion?). Please, take a look. A question is below :-) % here is a "dictionary": #(define tempi (list (cons "Adagio" "Повільно") (cons "Alleg

Re: New LilyPondTool version available for testing

2008-12-19 Thread Mark Polesky
Bertalan Fodor wrote: > > 1) my LY file path contains spaces, but I don't > >want to move myfile.ly out of \My Documents\ > >Any workaround for external PDF viewing? > > > Yes, I found one, will include it in the real release. > ... LilyPondTool.jar, in lilymenu.xml ... > change this

Re: Linux question

2008-12-19 Thread Rob Canning
Ralph Palmer wrote: Hi - I realize this is marginally on topic, and I apologize if it causes anyone distress. i think this is on topic as many users might be interested in GNU/Linux environments which are lilypond friendly - so i post back to list too :) I'm currently a Windows XP user. I wo

Re: calling a music variable using a Scheme function

2008-12-19 Thread Nicolas Sceaux
Le 19 déc. 08 à 14:12, Valentin Villenave a écrit : Greetings Nicolas, hi everybody, can someone tell me why the following snippet doesn't work? (It's heavily based on Nicolas' functions -- and looked sooo promising...) %%% #(use-modules (ice-9 format)) toto = { c d c d } includev

Re: formatting two-note tremolo's

2008-12-19 Thread kristof
At 06:06 p.m. 19/12/2008, Andrew Hawryluk wrote: Your email arrived without the PDF and the PNG. I think the -user list requires that email + attachment size be less than 96KB. oops, sorry. dind't realise that. i uploaded them to my site instead now this is wat i get: http://kristoflauwers.d

Re: formatting two-note tremolo's

2008-12-19 Thread Andrew Hawryluk
Your email arrived without the PDF and the PNG. I think the -user list requires that email + attachment size be less than 96KB. Andrew On Fri, Dec 19, 2008 at 9:51 AM, kristof wrote: > hi, > > this is the first time i'm trying to make a score in lilypond, so excuse me > if i'm asking stupid ques

Re: Vertical alignment of Chords - Feature / Bug???

2008-12-19 Thread Reinhold Kainhofer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am Freitag, 19. Dezember 2008 17:36:29 schrieb James E. Bailey: > Really? Where? A quick perusal through my scores of solo and choral > music shows the dynamics always above the staff and lyrics below. > Never interleaved. The dynamics of the staff be

Re: trouble installing

2008-12-19 Thread steve berthiaume
thanks for the suggestion, Jon; i tried it and got the same error. i thought it may have been my python installation, but removing it didn't seem to help either. -steve ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/li

formatting two-note tremolo's

2008-12-19 Thread kristof
hi, this is the first time i'm trying to make a score in lilypond, so excuse me if i'm asking stupid questions of if i'm overlooking something obvious.. when i make a two note tremolo, with the flowing code: \repeat "tremolo" 16 {32 32 } it looks like in the attached tremolo

Re: Vertical alignment of Chords - Feature / Bug???

2008-12-19 Thread James E. Bailey
Am 19.12.2008 um 17:11 schrieb Carl D. Sorensen: On 12/18/08 9:46 PM, "Andrew Hawryluk" wrote: On Thu, Dec 18, 2008 at 10:32 AM, Kieren MacMillan wrote: Hi Carl, For me, it's the lyrics context that should not use skylining. We should keep everything (dynamics, notes, etc) out of t

Linux question

2008-12-19 Thread Ralph Palmer
Hi - I realize this is marginally on topic, and I apologize if it causes anyone distress. I'm currently a Windows XP user. I would like to mount Linux on an old (circa 2002) Dell laptop my daughter is going to pass along to me. I've narrowed my choices to Ubuntu, Kubuntu, or Debian (a distant thi

Re: Vertical alignment of Chords - Feature / Bug???

2008-12-19 Thread Carl D. Sorensen
On 12/18/08 9:46 PM, "Andrew Hawryluk" wrote: > On Thu, Dec 18, 2008 at 10:32 AM, Kieren MacMillan > wrote: >> Hi Carl, >> >>> For me, it's the lyrics context that should not use skylining. We should >>> keep everything (dynamics, notes, etc) out of the lyrics line. >> >> Excellent point <

Re: Vertical alignment of Chords - Feature / Bug??? Subtle Solution

2008-12-19 Thread Carl D. Sorensen
On 12/19/08 3:57 AM, "Simon J Mackenzie" wrote: > Hi all, > After looking through my draft lead sheets I saw this anomaly rearing > its head again. > > TEMPORARY SOLUTION: > For the words in the preceding lyric line into which the Chord is > entering I surrounded the nearest preceding word abov

Re: Lyrics starting on 2nd note

2008-12-19 Thread Valentin Villenave
2008/12/19 Jean-Alexis Montignies : > I've used the \with syntax and it works, still I have no idea why the code I > wrote did not worked in 3/4 (In 4/4, I have a similar score working). Greetings, If I may, if you're a French-speaking LilyPonder you might be interested in also subscribing to our

calling a music variable using a Scheme function

2008-12-19 Thread Valentin Villenave
Greetings Nicolas, hi everybody, can someone tell me why the following snippet doesn't work? (It's heavily based on Nicolas' functions -- and looked sooo promising...) %%% #(use-modules (ice-9 format)) toto = { c d c d } includevar= #(define-music-function (parser location name) (string

Re: Lyrics starting on 2nd note

2008-12-19 Thread Jean-Alexis Montignies
I've used the \with syntax and it works, still I have no idea why the code I wrote did not worked in 3/4 (In 4/4, I have a similar score working). Thanks anyway! Le 11 déc. 08 à 11:06, James E. Bailey a écrit : Am 11.12.2008 um 10:47 schrieb Jean-Alexis Montignies: Hi there! I'm surpris

Re: flatten ties ~ proportional notation.

2008-12-19 Thread Rob Canning
This is the easiest way to do it, assuming you don't have any tied chords: \override TieColumn #'tie-configuration = #(lambda (grob) (let* ((notehead (ly:grob-parent grob X)) (y-off (* 2 (ly:grob-property notehead 'Y-offset (list (cons y-off 0 thanks neil

Re: Vertical alignment of Chords - Feature / Bug??? Subtle Solution

2008-12-19 Thread Simon J Mackenzie
Hi all, After looking through my draft lead sheets I saw this anomaly rearing its head again. TEMPORARY SOLUTION: For the words in the preceding lyric line into which the Chord is entering I surrounded the nearest preceding word above the chord in quotes and added a space to the end of word so tha

Re: New LilyPondTool version available for testing

2008-12-19 Thread Bertalan Fodor (LilyPondTool)
Mark Polesky wrote: Bert, Thanks! I downloaded the latest from http://www.organum.hu/fileadmin/lilypondtool/2.11-r1/ and now MIDI plays without needing #(ly:set-option 'midi-extension "midi") But... 1) my LY file path contains spaces, but I don't want to move myfile.ly out of \My Document

Re: Extension fichires midi

2008-12-19 Thread Valentin Villenave
Le 18 décembre 2008 23:57, Gilles THIBAULT a écrit : > Je suis très tenté d'essayer la nouvelle version de LilypondTools tout de > suite mais il faut que je me raisonne : j'ai pas mal de fichiers à finir et > je ne veux pas risquer pour le moment de ne pas pouvoir utiliser cette outil > qui met in

Re: suppressing bar numbers at rehearsal marks?

2008-12-19 Thread Mark Polesky
Mats Bengtsson wrote: > >> If you have a good reason to do what you ask > >> for, why not simply define a macro which > >> both draws a rehearsal mark and does a > >> \once \override BarNumber #'transparent = ##t > > I just gave that a quick test and it didn't > > seem to eliminate the bar numb

Re: suppressing bar numbers at rehearsal marks?

2008-12-19 Thread Mats Bengtsson
Paul Scott wrote: If you have a good reason to do what you ask for, why not simply define a macro which both draws a rehearsal mark and does a \once \override BarNumber #'transparent = ##t I just gave that a quick test and it didn't seem to eliminate the bar numbers. If you replace it by \o

Re: New LilyPondTool version available for testing

2008-12-19 Thread Mark Polesky
Bert, Thanks! I downloaded the latest from http://www.organum.hu/fileadmin/lilypondtool/2.11-r1/ and now MIDI plays without needing #(ly:set-option 'midi-extension "midi") But... 1) my LY file path contains spaces, but I don't want to move myfile.ly out of \My Documents\ Any workaround f