Re: Cygwin install of 2.6?

2005-07-12 Thread Thomas Scharkowski

 but I also got the error about 'PFAPFAemmentaler-26.pfa.pfa' is not
 found.
 
 Rob
 


I also get this error:

error: can't find file: 
`/usr/share/lilypond/2.6.0/fonts/type1//PFAPFAemmentaler-26.pfa.pfa' 

Thomas


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


RE: lilypond-book problem remains in 2.6.1

2005-07-12 Thread Georg Dummer
My workaround for this problem:

Put the line:
\newcommand{\betweenLilyPondSystem}[1]{\linebreak}

in the preamble of the Lytex file. 

But there are still some alignment problems I tried to solve with something 
like:

\newcommand{\preLilyPondExample}{%
\begin{figure}[t]%
%\begin{flushright}%  
%\leavevmode%
\centering%
}%
\newcommand{\postLilyPondExample}{%
%\end{flushright}%
\end{figure}%
}%

without success.

Georg

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nicholas Haggin
Sent: Tuesday, July 12, 2005 12:05 AM
To: lilypond-user@gnu.org
Cc: lilypond-devel@gnu.org
Subject: lilypond-book problem remains in 2.6.1

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

The output issues I posted about earlier (to lilypond-user only) remain 
under 2.6.1, although the other bugs I ran into are now fixed.

http://nhaggin.freeshell.org/lilybook-trouble/

Again, note the vertical placement of staves in hymnal.pdf.

- --
Nicholas Haggin

A.M.D.G.

Find my public keys at my website: http://nhaggin.freeshell.org/ -BEGIN PGP 
SIGNATURE-

iD8DBQFC0vs4YbuXiaDnyW4RAmciAJ9+9MtNDwap1AsDlQ6jE08WZeWVXgCfWRIW
+fqc2dlVUPuGzQVht0d7SEQ=
=Nlyn
-END PGP SIGNATURE-


___
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: lilypond-book problem remains in 2.6.1

2005-07-12 Thread Nicholas Haggin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Georg Dummer wrote:
 My workaround for this problem:
 
 Put the line:
 \newcommand{\betweenLilyPondSystem}[1]{\linebreak}
 
 in the preamble of the Lytex file. 

A hack, but it gives better output. Thanks much.

- --
Nicholas Haggin

A.M.D.G.

Find my public keys at my website: http://nhaggin.freeshell.org/
-BEGIN PGP SIGNATURE-

iD8DBQFC03uqYbuXiaDnyW4RAg2qAJ9TxQlp9WoKdUqF2Xl46vrRgcVhdwCdF5Yy
YjwitgPxhryVD9KhR2WINkk=
=635B
-END PGP SIGNATURE-


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


Re: problems with (new) lilypond-book

2005-07-12 Thread Wolfgang Mechsner
Thank you very much. Everyting works fine :-)
Wolfgang

Am Montag, den 11.07.2005, 16:30 -0500 schrieb Nicholas Haggin:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
   This is a known bug that is fixed in the CVS; the Python script
 which is lilypond-book is missing import tempfile near the beginning.
   If you are feeling courageous :) you can make the change yourself;
 just add the line
 
 import tempfile
 
 at the end of the first group of import statements, after import
 string. Be sure to make a backup copy of lilypond-book before editing.
 
 - --
 Nicholas Haggin
 
 A.M.D.G.
 
 Find my public keys at my website: http://nhaggin.freeshell.org/
 -BEGIN PGP SIGNATURE-
 
 iD8DBQFC0uTgYbuXiaDnyW4RAsGWAKCO/YLXW3e2MLH1vU97bl8NPhOBggCfSXXb
 9jjhMNkR7zMVlVcQTxtqR1Q=
 =mOkF
 -END PGP SIGNATURE-
 
 
 ___
 lilypond-user mailing list
 lilypond-user@gnu.org
 http://lists.gnu.org/mailman/listinfo/lilypond-user
-- 
Wolfgang Mechsner
Goebenstr. 3
49076 Osnabrück
Tel. 0541-2052090
Mobil 0179-9096684
[EMAIL PROTECTED]
www.wolfgang-mechsner.de



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


Re: Using Scheme inside header markup

2005-07-12 Thread Nicolas Sceaux
Sven Axelsson [EMAIL PROTECTED] writes:

 Lilypond 2.6.0 Windows

 myCond = ##t
 \paper {
 bookTitleMarkup = \markup {
 \column {
 \fill-line {
 \large \bold \fromproperty #'header:title
 \fromproperty #'header:meter
 \line { \fromproperty #'header:composer   \italic
 \fromproperty #'header:arranger } 
 }
 #(if myCond ( #{\line { \fromproperty #'header:comment } #} ))
 }
 }
 }

 [...] but it always gives me a unknown escaped string for all the
 backslash expressions at the point right after \header, and
 unexpected SCM_T at the #(if statement.

#{ ... #} is for entering music expressions inside Scheme. What you want
here is to enter markup expressions. You can do that using the
'markup' macro. See the LilyPond manual:
http://lilypond.org/doc/v2.6/Documentation/user/out-www/lilypond/Markup-construction-in-Scheme.html

\version 2.7.0
#(define my-cond #f)

\paper {
  bookTitleMarkup = \markup {
\column {
  \fill-line {
\large \bold \fromproperty #'header:title
\fromproperty #'header:meter
\line { \fromproperty #'header:composer   
\italic \fromproperty #'header:arranger } 
  }
  #(ly:export (if my-cond 
  (markup #:fromproperty 'header:comment) 
  (markup)))
}
  }
}

\header {
title = Title
meter = Meter
composer = Composer
comment = Comment
}

\relative c'' { a b c d }


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


another german chords mode

2005-07-12 Thread fiëé visuëlle

Hi there!

Since a week I'm playing around with LilyPond and I like it a lot so  
far.
But there are some features that I miss i.e. that I can't figure how  
to achieve.


I'd like to let my chord names look like I'm used to from German  
Scouts songbooks, i.e.


- only major chords are uppercase, everything else is lowercase (no  
'm' modifier for minor)


- bass string as uppercase index (small subscript) letter (in TeX: G_ 
{H} would be g major with B as bass string)


- print e:3+ like (TeX) E^{3+} and not E^{#3} (the latter would mean  
F - is it a bug or a feature?)


- single bass tones as small uppercase letters with a bare or an x  
over or below them


- optional chords in brackets (should be played in the MIDI)

- I don't care if pitched(?) chords are printed as e.g. Fis or F#

Is this possible? Did I only miss it in the docs?


Best regards from Lake Constance!
---
Henning Hraban Ramm
CH-8275 Tägerwilen
---
http://angerweit.tikon.ch/lieder



smime.p7s
Description: S/MIME cryptographic signature
___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: lyric placement

2005-07-12 Thread Rob Vlasaty
Arthur,

You might want to assign each voice separately, rather than put them in chords. 
 Then you can combine the voices together when you print the staff.  This way 
Lilypond knows exactly which notes to put your lyrics under.  Also, remember to 
put a slur on your eighth-notes so the word in can be sung over two notes.

I've been working mostly with hymns lately, so I made a template for myself.  
It might have extra stuff that you don't need, but it should get you started.

Rob


 
\version 2.6.0
\header {   

title = Hymn Template
subtitle = 
tagline =
poet = 
composer =


}

#(set-global-staff-size 20) 
\include english.ly



upperOne = 
\relative a'{
\time 4/4

\voiceOne
a4 b c d a b c d \break
}


upperTwo =  
\relative a'{

\voiceTwo
d,4 e f g d e f g
}


lowerOne =  
\relative a {
\time 4/4

\voiceOne
a4 b c d a b c d

} 

lowerTwo =   
\relative c {

\voiceTwo
d4 e f g d e f g
}




firstverse = \lyricmode {
La la la la la la la la
 }

secondverse = \lyricmode {
Do do do do do do do do
}

thirdverse = \lyricmode {
Re re re re re re re re
}

fourthverse = \lyricmode {

}

refrain = \lyricmode { so so so so so

}





  
\score{ 
\context StaffGroup

\context Staff = upper 


\clef treble
\context Voice = one \upperOne
\context Voice = two \upperTwo 


\lyricsto one \new Lyrics {

\set vocalName = 1.
\set vocNam = 1.
\firstverse 
}

\lyricsto one \new Lyrics {

\set vocalName = 2.
\set vocNam = 2.
\secondverse 
}

 \lyricsto one \new Lyrics {

\set vocalName = 3.
\set vocNam = 3.
\thirdverse 
}

\context Staff = lower 
\clef bass
\context Voice = one \lowerOne
\context Voice = two \lowerTwo




 
\layout {


\context{\Lyrics
minimumVerticalExtent = #'(0.0 . 2.5)
%   \override LyricText #'font-name = #Zurich BT
%   \override LyricText #'font-size = #-0.5
%   \override LyricText #'font-shape = #'italic
%   \override VocalName #'font-name = #Zurich BT
\override VocalName #'break-align-symbol = #'time-signature
%   \override VocalName #'break-align-symbol = #'begin-of-note
%   \override LyricText #'font-magnification = #0.95
%   \override VocalName #'font-magnification = #0.95
}   

\context{\StaffGroup
\remove Span_bar_engraver
}

\context{\Staff
minimumVerticalExtent = #'(-4 . 0)
autoBeaming = ##t
\unset melismaBusyProperties 
}

\context{\Score
barNumberVisibility = #all-invisible
}
}


\midi { }   
}
\paper {

linewidth = 6\in 
indent = 0
pagenumber = no
}



-- 
___
Sign-up for Ads Free at Mail.com
http://promo.mail.com/adsfreejump.htm



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


Re: force accidentals

2005-07-12 Thread Nicolas Sceaux
Stephen [EMAIL PROTECTED] writes:

 I am not sure what the error message means:

 warning: accidental `5' not found

 How is '5' an accidental? Of course, since it's not that's why is
 can't be found, but how is it that it gets looked for?

 Stephen 

Please quote the message to which your replying, in order to bring some
context to the discussion:

Nicolas Sceaux [EMAIL PROTECTED] writes:

 Here is *very* dirty trick, which produces lots of warnings,

these are the warning you're wondering about.

 but the
 output seems to be OK. The good way would be to pay Han-Wen to implement
 that feature.

   \version 2.7.0

   atonicKey = 
   #(def-music-function (parser location) ()
  #{ #(ly:export (make-music 'EventChord
  'origin $location
  'elements (list (make-music 'KeyChangeEvent
   'tonic (ly:make-pitch -1 4 0)
   'pitch-alist '((4 . 5)
  (5 . 5)
  (6 . 5)
  (0 . 5)
  (1 . 5)
  (2 . 5)
  (3 . 5))
 \set Score . extraNatural = ##f #})

You can see the '5' accidentals in `pitch-alist'. That's why I called
that a very dirty trick: then engine compares note alterations with the
key signature, which contains only non-existant alterations. That's why
the engine puts alteration on all notes it sees (unless a note with the
same pitch and the same octave has been seen before in the same
measure). As a side-effect, a warning is produced each time the
alterations from the key signature are treated.

nicolas


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


Re: Cygwin install of 2.6?

2005-07-12 Thread Thomas Scharkowski
Sorry, this is no more a lilypond question, but perhaps you can help:

My cygwin installation does not work anymore. I tried to reinstall, 
but bash does not find any command. There is no home directory.

Help please!

 In normal setup.exe
 
 You may need to manually install thefontconfig, freetype2 and pango
 packages (all of them via setup.exe)
 
 Bert
 
 Do you have fontconfig installed?
 
 
 Where do I find it?
   
 
 




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


RE: Using Scheme inside header markup

2005-07-12 Thread Sven Axelsson
 From: Nicolas Sceaux [mailto:[EMAIL PROTECTED] 
 Subject: Re: Using Scheme inside header markup
 
 Sven Axelsson [EMAIL PROTECTED] writes:
 
  Great. Now it works that far. What I acually want to do here is to
  detect if Lilypond has been called with the --preview flag and then
  turn off my comment field in the header. 
 
  I asked that question some days ago and got this answer 
 from Han-Wen:
 
  You could use -dno-verbose-header and then read the 
  result with ly:get-option.
 
  So I thought I just could do
  #(ly:export (if (ly:get-option 'preview) (markup ...)))
 
  but that doesn't work. I get an error Unknown global option.
 
 Do you really get an error, or rather a warning?
 
  Obviously only a few options are transfered from main.cc
  and preview is not one of them. Han-Wen, how should I do this?
 
 When invoking lilypond with --preview, add eg. a 
 -dshort-header option on
 the command line. Then, test with ly:get-option whether the 
 short-header
 option is selected or not:
 
   #(ly:export (if (not (ly:get-option 'short-header))
   (markup #:fromproperty 'header:comment)
   (markup)))
 
 Thus:
   $ lilypond --preview -dshort-header myfile.ly
 will produce the preview image with short headers, and:
   $ lilypond myfile.ly
 will produce the score with full headers.

Aha! I didn't quite understand how that was supposed to work.
Now I'm calling lily from a batch file that looks like this

%ProgramFiles%\lilypond\usr\bin\lilypond.exe --preview -dresolution=72
-dno-comment %~n1.ly
%ProgramFiles%\lilypond\usr\bin\lilypond.exe --pdf %~n1.ly

And I have this in my header markup:

#(ly:export (if (not (ly:get-option 'no-comment)) 
 (markup #:frompropery 'header:comment) 
 (markup)))

But I still get the header with the comment field in both cases.

Also, I tried --preview --no-pages as suggested in the manual, but
then lily fails immediately, producing no output, not even a log file.

-- 
Sven Axelsson



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


Re: Lilypond and stability

2005-07-12 Thread Stephen
Well, that solves that problem, do you happen to know why the composer and 
opus fields overlap in the header?


When I post to the user group, I have to remember to manually paste in the 
lilypond-user address. At least I think I have to.


Stephen 




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


Re: force accidentals

2005-07-12 Thread Stephen

I am not sure what the error message means:

warning: accidental `5' not found

How is '5' an accidental? Of course, since it's not that's why is can't be 
found, but how is it that it gets looked for?


Stephen 




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


Re: Cygwin install of 2.6?

2005-07-12 Thread Rob Vlasaty
Bert,

I have fontconfig 2.2.2-1, freetype2 2.1.5-1, pango 1.6.0-2, pango-devel 
1.6.0-2 and pango-runtime 1.6.0-2 installed, yet I still get that missing file 
error.

Rob

-- 
___
Sign-up for Ads Free at Mail.com
http://promo.mail.com/adsfreejump.htm



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


Cywin problem, font not found

2005-07-12 Thread Thomas Scharkowski
After some installations to lily 2.6.0 and back to 2.4.6 I have no 
normal cygwin anymore. There is no home directory and I do not get 
the former username prompt, only bash-3.00$.
Commands like cd or ls do not work.

Lilypond does work, but I get the following error message:

Interpreting music... error: can't find `feta20.afm'
Music font has not been installed properly.  Aborting

I do not know how all this is connected.

Thanks for your help,
Thomas
lilypond 2.4.6, Cygwin, Windows XP


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


Re: Cygwin install of 2.6?

2005-07-12 Thread Bertalan Fodor

I'm just asking, because with cygwin I used to build the release, it works.
I'll try to find what's missing.

Bert

Rob Vlasaty írta:


Bert,

I have fontconfig 2.2.2-1, freetype2 2.1.5-1, pango 1.6.0-2, pango-devel 
1.6.0-2 and pango-runtime 1.6.0-2 installed, yet I still get that missing file 
error.

Rob

 





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


Re: Using Scheme inside header markup

2005-07-12 Thread Nicolas Sceaux
Sven Axelsson [EMAIL PROTECTED] writes:
 Now I'm calling lily from a batch file that looks like this

 %ProgramFiles%\lilypond\usr\bin\lilypond.exe --preview -dresolution=72
 -dno-comment %~n1.ly
 %ProgramFiles%\lilypond\usr\bin\lilypond.exe --pdf %~n1.ly

 And I have this in my header markup:

 #(ly:export (if (not (ly:get-option 'no-comment)) 
  (markup #:frompropery 'header:comment) 
  (markup)))

 But I still get the header with the comment field in both cases.

There is a little subtlety with options: -dno-comment means that you set
the `comment' option to #f, whereas -dcomment means that you set comment
to #t. The problem is that, in that case, the comment option will never
be true: if you say dno-comment, it will be false, and if you say
nothing, it will be false also. I suggest that you use an option that
does not start by no-, for instance -dwithout-comment, and then you
test (ly:get-option 'without-comment)

nicolas


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


RE: Using Scheme inside header markup

2005-07-12 Thread Sven Axelsson
 From: Nicolas Sceaux [mailto:[EMAIL PROTECTED] 
 Subject: Re: Using Scheme inside header markup
 
 Sven Axelsson [EMAIL PROTECTED] writes:
  Now I'm calling lily from a batch file that looks like this
 
  %ProgramFiles%\lilypond\usr\bin\lilypond.exe --preview 
 -dresolution=72
  -dno-comment %~n1.ly
  %ProgramFiles%\lilypond\usr\bin\lilypond.exe --pdf %~n1.ly
 
  And I have this in my header markup:
 
  #(ly:export (if (not (ly:get-option 'no-comment)) 
   (markup #:frompropery 'header:comment) 
   (markup)))
 
  But I still get the header with the comment field in both cases.
 
 There is a little subtlety with options: -dno-comment means 
 that you set
 the `comment' option to #f, whereas -dcomment means that you 
 set comment
 to #t. The problem is that, in that case, the comment option 
 will never
 be true: if you say dno-comment, it will be false, and if you say
 nothing, it will be false also. I suggest that you use an option that
 does not start by no-, for instance -dwithout-comment, 
 and then you
 test (ly:get-option 'without-comment)

Aargh! That's it alright! Thanks a lot for helping me out here.

Got any idea what's up with the --no-pages option failling?

-- 
Sven Axelsson



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


Re: Cygwin install of 2.6?

2005-07-12 Thread Jan Nieuwenhuizen
Thomas Scharkowski writes:

 but I also got the error about 'PFAPFAemmentaler-26.pfa.pfa' is not
 found.
 
 Rob
 


 I also get this error:

 error: can't find file: 
 `/usr/share/lilypond/2.6.0/fonts/type1//PFAPFAemmentaler-26.pfa.pfa'

This file name is bogus.  I thought this was fixed, possibly
windows-only and not for Cygwin.  Han-Wen?

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


Re: Cygwin install of 2.6?

2005-07-12 Thread Han-Wen Nienhuys

Jan Nieuwenhuizen wrote:
error: can't find file: 
`/usr/share/lilypond/2.6.0/fonts/type1//PFAPFAemmentaler-26.pfa.pfa'



This file name is bogus.  I thought this was fixed, possibly
windows-only and not for Cygwin.  Han-Wen?


Sorry, can't recall the details anymore. It's also strange that .pfa is 
there twice.



--

Han-Wen Nienhuys - [EMAIL PROTECTED] - http://www.xs4all.nl/~hanwen

LilyPond Software Design
 -- Code for Music Notation
http://www.lilypond-design.com



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


Cygwin problems again

2005-07-12 Thread Thomas Scharkowski
Hello,

I installed Cygwin again, but still get the same error message:

Interpreting music... error: can't find `feta20.afm'
Music font has not been installed properly.  Aborting

How do I get the linux commands back? Even the simplest commands do 
not work anymore (ls, cd etc.).
Shouldn't the cygwin setup.exe have created a home directory for the 
current logged in user? Last (first?) time I installed  I did not eve 
have to think about it. So what could be wrong here? Any help or 
pointers where to look appreciated!

Thomas
LilyPond 2.4.6 / Cygwin(?) / Windows XP


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


opening files with Notepad

2005-07-12 Thread Larry Kent
Taking my first baby steps with Lily, so forgive the syntax/grammer of the 
question:


Using NotePad, I've entered a few short samples from the user's manual, even 
edited in a few changes, etc., and all goes well, saved the files as 
something like Test.ly and run the compiler, the output comes out great in 
a .pdf file.


The problem is that when I then reopen the source file in Notepad, 
everything looks different, all run together and basically un-readable.  
I've also gone to the Mutopia site and downloaded a couple of examples. They 
look fine, print fine, but again when I open the source code files in 
Notepad (I've also tried MSWord), the same thing happens.


What am I missing here?  BTW:  I'm running Windows XP Pro.

Thanks. -LK

Larry Kent
Tampa, FL
[EMAIL PROTECTED]




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


Re: Cywin problem, font not found

2005-07-12 Thread Bertalan Fodor

Yes, type this:

. /etc/profile.d/lilypond-profile.sh


Can I run it manually?


 





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


Re: Cywin problem, font not found

2005-07-12 Thread Thomas Scharkowski


 I think something happened with the /etc/profile.d directory or the
 /etc/profile file
 
 Interpreting music... error: can't find `feta20.afm'
 Music font has not been installed properly.  Aborting
   
 
 This happens when lilypond-profile.sh has not run.
 
 Bert

Can I run it manually?


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


Cygwin problem half solved but feta fonts still not found

2005-07-12 Thread Thomas Scharkowski
I found out that there is a broken package in the cygwin 
distribution:

coreutils-5.3.0-8 is currently broken and makes it through to the 
mirrors, see http://cygwin.com/ml/cygwin-apps/2005-07/msg00171.html,
try to fetch 5.3.0-7 or wait until it is fixed, please.
(from the cygwin ml archive)

Going back to 5.3.0-7 solved one part of the probelem (still no home 
directory created).

But how do I get lilypond to find the feta font?

Interpreting music... error: can't find `feta20.afm'
Music font has not been installed properly.  Aborting

Thomas

LilyPond 2.4.6, Cygwin, Windows XP



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


Re: Cywin problem, font not found

2005-07-12 Thread Bertalan Fodor
I think something happened with the /etc/profile.d directory or the 
/etc/profile file



Interpreting music... error: can't find `feta20.afm'
Music font has not been installed properly.  Aborting
 


This happens when lilypond-profile.sh has not run.

Bert


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


Re: Cywin problem, font not found

2005-07-12 Thread Thomas Scharkowski
I get:

/bin/sh: bad interpreter: No such file or directory 

 Yes, type this:
 
 . /etc/profile.d/lilypond-profile.sh
 
 Can I run it manually?
 
 
   
 
 




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


Re: Cywin problem, font not found

2005-07-12 Thread Bertalan Fodor

It seems that cygwin is not reinstalled correctly.
Close all cygwin windows. Rerun setup.exe, and make sure that ash and 
bash is selected.



I get:

/bin/sh: bad interpreter: No such file or directory 
 





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


Re: Cygwin install of 2.6?

2005-07-12 Thread Trent J

I tried the same with Cygwin ..got the same error message... tried copying the file and adding the extra .pfa but this time the same error occured with 
error: can't find file: /usr/share/lilypond/2.6.0/fonts/type1//PFAPFAemmentaler-26.pfa.pfa.pfa - keeps on adding an extra .pfa for some strange reason.
TrentFrom: Han-Wen Nienhuys [EMAIL PROTECTED]To: Jan Nieuwenhuizen [EMAIL PROTECTED]CC: Rob Vlasaty [EMAIL PROTECTED], lilypond-user@gnu.orgSubject: Re: Cygwin install of 2.6?Date: Tue, 12 Jul 2005 22:48:09 +0200Jan Nieuwenhuizen wrote:error: can't find file: `/usr/share/lilypond/2.6.0/fonts/type1//PFAPFAemmentaler-26.pfa.pfa'This file name is bogus.I thought this was fixed, possiblywindows-only and not for Cygwin.Han-Wen?Sorry, can't recall the details anymore. It's also strange that .pfa is there twice.--Han-Wen Nienhuys - [EMAIL PROTECTED] - http://www.xs4all.nl/~hanwenLilyPond Software Design-- Code for Music 
Notationhttp://www.lilypond-design.com___lilypond-user mailing listlilypond-user@gnu.orghttp://lists.gnu.org/mailman/listinfo/lilypond-user



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


Re: opening files with Notepad

2005-07-12 Thread Daniel Ballenger
Try wordpad.  I don't think notepad cares about \n (newlines).  Thus
causing your run-together problem

-Daniel

On 7/12/05, Larry Kent [EMAIL PROTECTED] wrote:
 Taking my first baby steps with Lily, so forgive the syntax/grammer of the
 question:
 
 Using NotePad, I've entered a few short samples from the user's manual, even
 edited in a few changes, etc., and all goes well, saved the files as
 something like Test.ly and run the compiler, the output comes out great in
 a .pdf file.
 
 The problem is that when I then reopen the source file in Notepad,
 everything looks different, all run together and basically un-readable.
 I've also gone to the Mutopia site and downloaded a couple of examples. They
 look fine, print fine, but again when I open the source code files in
 Notepad (I've also tried MSWord), the same thing happens.
 
 What am I missing here?  BTW:  I'm running Windows XP Pro.
 
 Thanks. -LK
 
 Larry Kent
 Tampa, FL
 [EMAIL PROTECTED]
 
 
 
 
 ___
 lilypond-user mailing list
 lilypond-user@gnu.org
 http://lists.gnu.org/mailman/listinfo/lilypond-user
 


-- 
Daniel Ballenger
http://denetron.com
Sr. Systems Administrator - Denetron LLC


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


Re: opening files with Notepad

2005-07-12 Thread Paul Scott

Daniel Ballenger wrote:


Try wordpad.  I don't think notepad cares about \n (newlines).  Thus
causing your run-together problem
 

WordPad isn't really a text editor.  I don't know how LilyPad is related 
to EditPad (they look about the same) but there are several good free 
text editors.  I use EditPad Lite which knows how to convert line 
termination between DOS and *nix (and Mac).


Paul Scott



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


Re: 2 questions

2005-07-12 Thread Graham Percival


On 6-Jul-05, at 7:40 PM, Bec and John wrote:

I have 2 questions about Lilypond usage:

1) Using the \book option and using the piece property to name each 
\score, how can I centre the piece name instead of having small text 
all the way over to the left?


Look at ly/titling-init.ly  and redefine the output.  The bottom of 
Creating titles hints
at how to do this; a bit of experimentation and looking at 
ly/titling-init.ly should do

the rest.

2) There isn't enough room between consecutive pieces, how can I 
increase the amount of space between pieces? The answer to question 1 
would actually negate this question, but it'd be nice to know anyway.


See Page formatting.

Cheers,
- Graham



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


Re: Book Page Breaks with version 2.4.6

2005-07-12 Thread Graham Percival


On 8-Jul-05, at 8:53 PM, Art Hixson wrote:

How do you make page breaks between \score sections of \book?  We know 
that \newPage is useless for this.


The best way is to update to 2.6 and use breakbefore.

Cheers,
- Graham



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


Re: lilypond-book problem remains in 2.6.1

2005-07-12 Thread Graham Percival


On 11-Jul-05, at 4:05 PM, Nicholas Haggin wrote:

The output issues I posted about earlier (to lilypond-user only)
remain under 2.6.1, although the other bugs I ran into are now fixed.

http://nhaggin.freeshell.org/lilybook-trouble/

Again, note the vertical placement of staves in hymnal.pdf.


I think the problem is the horizontal placement, not the vertical.  I 
thought

this bug had been fixed...

Could you construct a minimal example that demonstrates the problem?
That would greatly help the investigation.  Could you then send the
example to bug-lilypond ?

One way to completely eliminate these problems is to use \book{} around
your scores.  You may wish to do a few searches on the mailists to see
the history about lilypond-book, \book, and margins.

Cheers,
- Graham



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