Re: New pages for bugs and doc suggestions

2006-12-30 Thread Ruud van Silfhout
Graham Percival wrote: Could one or two people proofread the new pages on bug reports and doc suggestions? http://lilypond.org/web/devel/participating/bugs http://lilypond.org/web/devel/participating/documentation-adding I think there is a small typo in the documentation-adding page. In the se

Re: The life of a Grob

2006-09-17 Thread Ruud van Silfhout
his would be: x [label="1: yourlabeltext"]; adding labels to edges is done the same way add: a -> b [label= "edgelabel"];. However, AFAICT an edge only supports one label, which will be placed by dot. More can be read in the dot-manual: http://www.graphviz.org/Documentation/dotg

Re: Reverse in std_vector.hh

2006-09-08 Thread Ruud van Silfhout
Han-Wen Nienhuys wrote: Ruud van Silfhout wrote: Hi, I have made an extension for the reverse function in std_vector.hh. The code suggests to implement template specialisation for reverse vector. On second thought, I have reservations whether this is a useful idea, it adds quite a lot of

Reverse in std_vector.hh

2006-09-07 Thread Ruud van Silfhout
left that out. Bye, Ruud van Silfhout additional memrev implementation: void *memrev(void *block, size_t elsize, size_t elnum) { void *pSwap = malloc(elsize); // could have nbeen alloca(elsize) char *pLeft = (char*)block; char *pRight = (char*)block + (elnum-1)*elsize; while (pLef

Re: Installing old lilypond version on cygwin

2005-09-24 Thread Ruud van Silfhout
Jan, Jan Nieuwenhuizen wrote: In 2.2.6, lilypond is a python script that `fixes' the environment, specifically the TEXMF variable. Comparing the default TEXMF value, or kpsexpand '$TEXMF' with what lilypond does should clear this up. On my system kpsexpand '$TEXMF' results in {/usr/local/s

Re: Installing old lilypond version on cygwin

2005-09-23 Thread Ruud van Silfhout
Ruud van Silfhout wrote: Mats/Jan, Mats Bengtsson wrote: Did you remember to update the file name database after that? Run the command "texhash". /Mats I tried this, and also Jan suggestion, to copy the lilypond.map file into the working directory, but still the same

Re: Installing old lilypond version on cygwin

2005-09-22 Thread Ruud van Silfhout
Mats/Jan, Mats Bengtsson wrote: Did you remember to update the file name database after that? Run the command "texhash". /Mats I tried this, and also Jan suggestion, to copy the lilypond.map file into the working directory, but still the same (although ksewhich now sees the lilypond.map

Re: Installing old lilypond version on cygwin

2005-09-21 Thread Ruud van Silfhout
Jan, Jan Nieuwenhuizen wrote: This might be a third tetex-3.0 problem, what does kpsewhich lilypond.map say? Nothing. find tells me: $ find / -name lilypond.map -print /usr/local/share/lilypond/2.2.6/dvips/lilypond.map and ls: -rw-r--r-- 1 Ruud None 2223 Sep 16 19:20 lilypond.map

Installing old lilypond version on cygwin

2005-09-21 Thread Ruud van Silfhout
Hi, Currently I am trying to create an environment from which I can run a 2.2.6 version of lilypond on cygwin. The reason is that I made a musicbook with lots of TeX code and lilypond 2.2.6 tweaks in it, which I cannot convert to the currrent version. I first had some problems getting 2.2.6 com

[Re: Proper handling of accidentals in unmetered music?]

2005-09-02 Thread Ruud van Silfhout
Oops, forgot to CC it to the devel-list. And I just saw 'mixed-meter'discussion on the user list concerning the same issue. Ruud Original Message Subject:Re: Proper handling of accidentals in unmetered music? Date: Fri, 02 Sep 2005 22:11:11 +0200 From:

Re: native LilyPond port for Microsoft Windows

2005-05-25 Thread Ruud van Silfhout
Jan Nieuwenhuizen wrote: The past weeks I've spent my lily development time on a mingw port and installer for windows. I'm sure this is far from perfect, but I do not want to hold it back any longer. The installer is not directly aimed at Cygwin/unix gurus, but rather meant for people who just

Re: Slur combined with acciaccatura shows incorrect slur

2005-05-02 Thread Ruud van Silfhout
Mats Bengtsson wrote: Erik Sandberg wrote: On Sunday 01 May 2005 16.04, Ruud van Silfhout wrote: Hi guys, When converting a piece of music for Mutopia I ran into the follwoing problem. I got the warning: "No slur to end" from the following piece of music. <<{g4( \acciaccatura a16

Wrong order of staffs in score

2005-05-02 Thread Ruud van Silfhout
With the score below I get the staffs in the wrong order. Although it is specified that the pianostaff should appear before the pedal staff (as for organ-scores), it appears with the pedal staff first and then the piano staff. I vaguely remember to have run into such a problem before, but I hav

Slur combined with acciaccatura shows incorrect slur

2005-05-01 Thread Ruud van Silfhout
Hi guys, When converting a piece of music for Mutopia I ran into the follwoing problem. I got the warning: "No slur to end" from the following piece of music. <<{g4( \acciaccatura a16 g8 f g a)}\\{e2.}>> The slur connects to the a16 instead of the last a. platform: XP machine with cygwin running L

Re: command line parameters to set the papersize

2005-01-20 Thread Ruud van Silfhout
From: "Graham Percival" <[EMAIL PROTECTED]> To: "Ruud van Silfhout" <[EMAIL PROTECTED]> Cc: "Lilypond development" Sent: Wednesday, January 19, 2005 5:35 AM Subject: Re: command line parameters to set the papersize > > On 13-Jan-05, at 11:26 A

Some questions concerning conversions

2005-01-13 Thread Ruud van Silfhout
As I understood from Jan's reaction it cannot be supported in the paper (layout) block and must be moved to the individual voices; So, this is definitely something that must be done by hand. Ideas/suggestions/information? I welcome everything! Regards, Ruud van Silfhout

command line parameters to set the papersize

2005-01-13 Thread Ruud van Silfhout
not get any reply. So, I re-post it on the devel list. Anyone willing to help us out ? Bye Ruud van Silfhout Mutopia maintainer mailto://Ruud.vanSilfhout(at)MutopiaProject.org > Hi, > > I've been trying to figure out if it's possible to set the paper size of > Lilypond

Re: override-auto-beam-settings

2005-01-11 Thread Ruud van Silfhout
Ok, I solved it as you proposed Jan, I had to change the Voices anyway, so I moved the override-auto-beam-setting there. Regards, Ruud van Silfhout - Original Message - From: "Ruud van Silfhout" <[EMAIL PROTECTED]> To: "Jan Nieuwenhuizen" <[EMAIL PROTECTE

Re: override-auto-beam-settings

2005-01-10 Thread Ruud van Silfhout
Hi Jan (and others), Thanks for your answer. > Ruud van Silfhout writes: > > > This is translated by convert-ly into > > \layout { \context { \Voice #(override-auto-beam-setting '(end * * * *) > > 1 4) } } > > for version 2.4.2. This looks quite reasonabl

override-auto-beam-settings

2005-01-09 Thread Ruud van Silfhout
problems using scheme in lily code. Can someone help me out. Regards, Ruud van Silfhout ___ lilypond-devel mailing list lilypond-devel@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-devel

Re: pedal notes above iso below pianostaff

2004-11-29 Thread Ruud van Silfhout
to work in an old version of lily, but was never expected to work in the first place. Regards, Ruud van Silfhout - Original Message - From: "Benjamin Esham" <[EMAIL PROTECTED]> To: "Ruud van Silfhout" <[EMAIL PROTECTED]> Cc: "Lilypond development" &l

pedal notes above iso below pianostaff

2004-11-27 Thread Ruud van Silfhout
ns pieces and one a piece of Ritter). Solutions? Regards, Ruud van Silfhout % Updated to Lilypond 2.2.5 by Ruud van Silfhout <[EMAIL PROTECTED]> % Last changed on 25/Nov/2004 \version "2.2.5" \header { filename = "HSpre3.ly" title = "Praeambulum no.3 in

TextSpanner Line style

2004-11-27 Thread Ruud van Silfhout
he line dashed. Any ideas? Regards, Ruud van Silfhout #(ly:set-option 'old-relative) % Updated to Lilypond 2.2.5 by Ruud van Silfhout <[EMAIL PROTECTED]> % Last changed on 8/Nov/2004 \version "2.2.5" \header { title = "Saltarello" composer = "Vincenzo Ga

Chordname printing looks strange in 2.2.5

2004-11-27 Thread Ruud van Silfhout
y appreciated. Bye, Ruud van Silfhout % Updated to Lilypond 2.2.5 by Ruud van Silfhout <[EMAIL PROTECTED]> % Last changed on 6/Nov/2004 \version "2.2.5" #(ly:set-option 'old-relative) \header { filename="TrustAndObey.ly" enteredby = "Peter Chubb"

Re: did shaped note support ever get added?

2004-11-18 Thread Ruud van Silfhout
rself already, then sorry for the noise. Regards, Ruud van Silfhout - Original Message - From: "Laura Conrad" <[EMAIL PROTECTED]> To: "Jonathan Walther" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, November 18, 2004 7:22 PM Subject:

Re: 2.4 announcement

2004-10-31 Thread Ruud van Silfhout
I posted it on the Mutopia-discussion mailing list ([EMAIL PROTECTED]) Ruud - Original Message - From: "Han-Wen Nienhuys" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, October 31, 2004 1:27 AM Subject: 2.4 announcement > > Hi Y'all, > > > I've just posted the LilyPond 2.4 re

convert-ly error

2004-10-17 Thread Ruud van Silfhout
s and tell me whether these problems can be fixed? Regards, Ruud van Silfhout an example (taken from beethovens Pathétique): \version "1.6.9" ~ [ ] <)d8 b> r is converted into: 4(\fp)() ~ 16.[ 32 16. 32] 4( 8 r) ___ lilypo

Re: Documentation enhancements

2004-09-29 Thread Ruud van Silfhout
- Original Message - > > 2. To add lyrics to music two methods are supplied; the 'addlyrics' and > > 'lyricsto'. I could find the difference between those two methods; so > > it is > > not clear to me when to use the one and when the other. > > Me neither. :)I'm still hoping that someb

Line dashing

2004-09-28 Thread Ruud van Silfhout
over the line. What are your opinions on this? Is this something to be implemented after 3.0 is out? Regards, Ruud van Silfhout ___ lilypond-devel mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/lilypond-devel

Documentation enhancements

2004-09-27 Thread Ruud van Silfhout
o the templates part of the manual? 5. The picture in the 'Creating titles' sub-section runs over the text below it (or at least in the PDF version of the document I have printed) Keep up the good work! Regards, Ruud van Silfhout ___ lilypo

stippled slurs

2004-04-10 Thread Ruud van Silfhout
ash-period" ?). It would be nice if the way dashing is specified, is genericly over all objects. Now there is "dash-fraction and dash-period" applicable to one type of object and "dashed " specifying it for another class of objects. Bye,

Positioning of lyrics under notes

2004-03-20 Thread Ruud van Silfhout
hi, Last night I was busy converting music I had from version 2.0.1 to my current version 2.1.18 (cygwin). This went reasonably well. Initially I had a number of differences I had to correct One was that in a lilypond-book LaTeX file in2.0.1 multiple lilypond-blocks (between \begin{lilypond} an

Betr: LilyPond 2.1.25 packaged for Cygwin

2004-02-21 Thread Ruud van Silfhout
Bert, Thanks for the new version. I was waiting for it to become available. Please change the release indication on the lilypond download page. It still shows that the 2.1.18 Windows version can be downloaded from your site. Bye, Ruud. >-- Oorspronkelijk bericht -- >From: "Fodor Bertalan" <[EMA

widening measures with rests

2004-01-22 Thread Ruud van Silfhout
Hi, For a piece I am typesetting currently I need to widen a rest to be able to print the text that belongs to it, above it (see the attached png file). How can I create this kind of behaviour? \score { \notes \relative c' { \time 4/2 R1*4/2 | R1*4/2\markup { \italic "zum Tempo a

\note not converted

2004-01-22 Thread Ruud van Silfhout
Hi, I converted a 1.9.8 version lilypond file to a 2.1.11 version. After conversion it did not work. The problem was caused by the \note #2 #0 #1 markup option. This did not translate into the new syntax \note #"2" #1. From the error message (see below) it was not directly clear to me (although I