DOS-based Windows users, please test [WAS: building lilypond.exe to test WinME fixes]

2005-07-10 Thread Jan Nieuwenhuizen

I have prepared unofficial installers to test the PDF output on DOS
based windowses (windows95, windows98, windowsME), available from

http://lilypond.org/people/janneke/windhoos
http://lilypond.org/people/janneke/windhoos/lilypond-2.6.1-1.exe
http://lilypond.org/people/janneke/windhoos/lilypond-2.6.1-1-upgrade.exe

See also

http://lists.gnu.org/archive/html/lilypond-devel/2005-07/msg00053.html

Please send failure/success reports for your flavour of windows here.

Thanks,
Jan.

-- 
Jan Nieuwenhuizen [EMAIL PROTECTED] | GNU LilyPond - The music typesetter
http://www.xs4all.nl/~jantien   | http://www.lilypond.org


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


About whole bar rest

2005-07-10 Thread Georges Roux
I need a whole bar rest, centered in middle of the bar
I must use

\time 3/4
R2.

but I prefer to lower the rest for this voice something like

\time 3/4
d2.\rest

but the rest isn't centered

What can I do?

Thanks
Georges


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


RE: About whole bar rest

2005-07-10 Thread Fairchild
Georges -

Now, in \time 2/4, 
 r2 produces a horizontally off-center rest, 
 R2 produces a horizontally centered rest, 
 c2\rest produces a horizontally off-center rest, vertically positioned at
the position of note c. 

Controlling a horizontally centered rest with a specified vertical position
can be accomplished with: 
 \override MultiMeasureRest  #'staff-position = #-1 R2 

As a feature request I have asked that the dual control be simplified to 
 c2\Rest 
using the note position for vertical control, and \Rest with a capital R
to designate horizontal centering.  This would only apply to whole- and
multi-measure rests.

 - Bruce

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Georges Roux
Sent: Sunday, July 10, 2005 7:19 AM
To: lilypond-user@gnu.org
Subject: About whole bar rest


I need a whole bar rest, centered in middle of the bar
I must use

\time 3/4
R2.

but I prefer to lower the rest for this voice something like

\time 3/4
d2.\rest

but the rest isn't centered

What can I do?

Thanks
Georges


___
lilypond-user mailing list
lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user





___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: force accidentals

2005-07-10 Thread Nicolas Sceaux
Mehmet Okonsar [EMAIL PROTECTED] writes:

 can the function be modified for NOT having the alteration or the natural on
 repeated notes in the same octave..
 
 forceAlterations =
   #(def-music-function (parser location music) (ly:music?)
  (music-map (lambda (m)
   (if (eqv? (ly:music-property m 'name) 'NoteEvent)
   (set! (ly:music-property m 'force-accidental) #t))
   m)
 music)
  music)
 *

Please keep discussion on the mailing list.

I'm not sure what you exactly want.  If you want that alterations of
notes on the same octave AND the same bar are not repeated, the quick
answer is: I don't know. Otherwise, you might experiment with the
following function and try to tailor it to your needs.

\version 2.7.0

forceAlterations = 
  #(let ((alteration-memo (make-hash-table 50)))
 (define (last-alteration ly-pitch)
   (hash-ref alteration-memo
 (cons (ly:pitch-notename ly-pitch)
   (ly:pitch-octave ly-pitch
 (define (register-alteration! ly-pitch)
   (hash-set! alteration-memo
  (cons (ly:pitch-notename ly-pitch)
(ly:pitch-octave ly-pitch))
  (ly:pitch-alteration ly-pitch)))
 
 (def-music-function (parser location music) (ly:music?)
   (music-map (lambda (m)
(if (eqv? (ly:music-property m 'name) 'NoteEvent)
(let ((pitch (ly:music-property m 'pitch)))
  (if (not (equal? (last-alteration pitch)
(ly:pitch-alteration pitch)))
  (set! (ly:music-property m 'force-accidental) #t))
  (register-alteration! pitch)))
m)
  music)
music))

\forceAlterations { 
  \time 5/4
  c' des' e' fis' gis' 
  c' des' e' fis' gis' 
  c' d' e' f' g' 
  c' d' e' f' g' 
}

But I don't think this is near what you want.

nicolas


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Cygwin install of 2.6?

2005-07-10 Thread Art Hixson
I originally installed Lilypond 2.4 under Cygwin.  Having Cygwin is 
handy for its support of Bash, TeX, etc. 
I'd like to upgrade to Lilypond 2.6 but the Cygwin installer doesn't 
appear to have been updated.  Will that be coming up?


Arthur H.


--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.323 / Virus Database: 267.8.11/44 - Release Date: 2005/07/08



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Cygwin install of 2.6?

2005-07-10 Thread Bertalan Fodor
I'll go away for some days, but you could try the current package, that 
would help me to test before uploading to cygwin.


Use as mirror the following address (type this address into the mirror 
field in setup.exe, press Add).


http://web.interware.hu/fodber/lilypond

You will need the packages:
bash coreutils crypt cygwin findutils ghostscript glib2-runtime 
libfontconfig1 freetype2 guile libiconv2 libintl2 libintl3 pango python


I think you can use two mirrors in the same time, that way these 
dependencies will be automatically installed.


I would greatly appreciate if you reported your success.

However, if there are problems I won't be able to help in the next three 
days.


Bert


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Jean-marc LEGRAND/CRS/FR/RM/Corp est absent(e).

2005-07-10 Thread Jean-marc LEGRAND




Je serai absent(e) du  30/06/2005 au 24/07/2005.

Je répondrai à votre message dès mon retour.



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user