Re: Running midi2ly.py

2005-11-10 Thread Jan Nieuwenhuizen
george writes:

 I'm using lilypond-2.7.12-1
 on Windows XP

Version 2.6.4-5 is the first package for windows that has a midi2ly that's
known to work.



 Mats Bengtsson wrote:

 You will get much more useful help from the mailing list if you
 tell which LilyPond version you use and on which operating system.

   /Mats

 George wrote:

 I tried:
  python midi2ly.py test.mid
  and got:
 Traceback (most recent call last):
   File midi2ly.py, line 42, in ?
 import midi
 ImportError: No module named midi
  This problem seems to have been reported before, but I haven't
 found a resolution.
  Help please,
  a lilypond newbie.
  george

 

 ___
 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



-- 
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: lyrics format

2005-11-10 Thread Mats Bengtsson
If you want a syllable (in your case a sequence of words combine into a 
syllable)

left aligned under a note instead of centered, you can insert a
\once \override LyricText #'self-alignment-X = #LEFT
just before the syllable. Of course, if you want to do it often, you 
probably

want to define a macro like

leftaligned = \once \override LyricText #'self-alignment-X = #LEFT

and just write \leftaligned before a syllable you want left aligned.

  /Mats

Arthur Dyck wrote:

I found a solution.  I put the first word of the string under a regular note 
and then the remainder of the string under a hidden note.  Works very nicely.


Arthur

On Wednesday 09 November 2005 12:55 pm, Arthur Dyck wrote:
 


I am using 2.6.4 on Linux Mandrake 10.1.  Upon occasion I have a series of
words sung to one note in free time.  When that note is in the middle of a
bar, the lyrics center themselves nicely under that note.  However, when
the note is the first note of a line, the lyrics extend past the left side
of the stave.  Is there a way to correct that?

Regards

Arthur


___
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
 



--
=
Mats Bengtsson
Signal Processing
Signals, Sensors and Systems
Royal Institute of Technology
SE-100 44  STOCKHOLM
Sweden
Phone: (+46) 8 790 8463 
   Fax:   (+46) 8 790 7260
Email: [EMAIL PROTECTED]
WWW: http://www.s3.kth.se/~mabe
=



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


Re:Running midi2ly.py

2005-11-10 Thread Martial

With window
for the moment
use version 2.6.4 for midi2ly
and
version 2.12.7 for output a good midi file with lilypond


--
Martial





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


Re: Polyphony and multiple voice contexts

2005-11-10 Thread Mats Bengtsson



Markian Hlynka wrote:

... I've only been working with lilypond for a week! But, a number of 
my questions on vocal scores have gone unanswered. This seems to 
indicate to me that the manual need some revision, as a lot of people 
do seem to be doing vocal work! I'd be happy to help with the manual 
once i know what I'm doing.


If you have any remaining unanswered questions, please post them again. 
I had
the impression that you had received answers and also that you had 
gained insight

enough to resolve most of the initial questions yourself now.

  /Mats


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


Re: Polyphony and multiple voice contexts

2005-11-10 Thread Mats Bengtsson

Please read in
http://lilypond.org/doc/v2.6/Documentation/user/out-www/lilypond/Explicitly-instantiating-voices.html#Explicitly-instantiating-voices
on exactly what the {...} \\ {...}  feature does.

Note that the LilyPond concept of Voice contexts is intended to
correspond exactly to the musical concept of one voice, i.e. you should
have one Voice context for each voice. Also, since the rhythm may
differ between different voices, the lyrics has to be connected to a
single voice.

Here's one possible structure for your \score block. Note that I have
reorganized things a bit more. For example, I have only explicitly
named the Voice contexts that need a name and I got rid of \global2.

global = {
   \key g \major
   \override Staff.TimeSignature #'style = #'()
   \time 4/4
   % Version of the \aikenHeads macro that applies to all
   % voices in the stave:
   \set Staff.shapeNoteStyles = ##(do re mi fa #f la ti)
   % Idem for \autoBeamOff
   \set Staff.autoBeaming = ##f
}

...

\score {
 \context ChoirStaff 
   \context Staff = women {
 \global
 
   \context Voice = sopVerses { \voiceOne \sopMusic }
   \new Voice { \voiceTwo \altoMusic }
 
 
   \context Voice = sopChorus { \voiceOne \sopChorusMusic }
   \new Voice { \voiceTwo \altoChorusMusic }
 
   }

   \context Lyrics = lineone { s1 }
   \context Lyrics = linetwo { s1 }
   \context Lyrics = linethree { s1 }

   \context Staff = men {
 \clef bass
 \global
 
   \new Voice { \voiceOne \tenorMusic }
   \new Voice { \voiceTwo \bassMusic }
 
 
   \new Voice { \voiceOne \tenorChorusMusic }
   \new Voice { \voiceTwo \bassChorusMusic }
 
   }

   \lyricsto sopVerses \context Lyrics = lineone \verseonewords
   \lyricsto sopVerses \context Lyrics = linetwo \versetwowords
   \lyricsto sopVerses \context Lyrics = linethree \versethreewords
   \lyricsto sopChorus \context Lyrics = lineone \choruswomen
 


 \layout {
  indent = 0
  }

 \midi { \tempo 4=100 }
}


You can simplify it further, for example by replacing
 
   \context Voice = sopVerses { \voiceOne \sopMusic }
   \new Voice { \voiceTwo \altoMusic }
 
 
   \context Voice = sopChorus { \voiceOne \sopChorusMusic }
   \new Voice { \voiceTwo \altoChorusMusic }
 

with
 
   {
 \context Voice = sopVerses { \voiceOne \sopMusic }
 \context Voice = sopChorus { \voiceOne \sopChorusMusic }
   }
   \new Voice { \voiceTwo \altoMusic \altoChorusMusic }
 


  /Mats




Jeff Shuman wrote:

I've only been working with Lilypond for a couple months, but I 
haven't been able to figure this out by the manual. I'm using version 
2.6.4-5 for Windows.


I use Lilypond for engraving congregational hymns. Almost all the 
songs are in 4-parts, and have the 3 verses followed by a single 
chorus. All the lyrics should appear between the staves. I want the 
flags on the staff to face opposite directions (soprano and tenor up, 
alto and bass down). I've seen the SATB score example, but I also want 
to separate the VERSE music and lyrics from the CHORUS

music and lyrics.

The following solution almost works, but no lyrics appear. (full .ly 
source is available at 
http://36thstchurchofchrist.com/documents/bindhands.ly ) Can someone 
please point

out the error(s)?



  /Mats


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


Re: making sense of templates in manual

2005-11-10 Thread Mats Bengtsson



Markian Hlynka wrote:


Ok, I'm looking at templates in the manual, 3.2.2, and 3.2.3.


rather than reprint, you can see it here:
http://lilypond.org/doc/v2.6/Documentation/user/out-www/lilypond/Piano-templates.html#Piano-templates


The first one (3.2.2) makes perfect sense to me:

it has \score, and within that it has a voice, and then a pianostaff 
in the form

\context PianoStaff 
   \context Staff = upper \upper
   \context Staff = lower \lower


That makes sense. Now, 3.2.3 says it will remove the separate vocal 
line. I would expect it to look something like

\context PianoStaff 
   \context Staff = upper \upper
   \lyricsto upper \new Lyrics \text
   \context Staff = lower \lower


or something like that. Instead, you see, in part,
 \context Staff = upper {
 \context Voice = singer \upper }
 \lyricsto singer \new Lyrics \text

What really confuses me is that the lower staff is now within its own 
 , whereas the upper staff has none of these, only { } . But not 
entirely! the \lyricsto section is outside of the upper staff 
context's { } !! So, it appears to me that the upper staff has no 
syntactic bound!



I will modify the template to use {...} in both staves. Since the bass 
clef should

appear before the music, it's certainly more intuitive to use a sequence
{\clef bass \lower } instead of two parallel actions  \clef bass 
\lower .

Both provide the same result, though.

Note also that a Staff context can only contain notes, not lyrics, even 
though
this seems to contradict some peoples intuition of what a staff/stave 
constitutes.


  /Mats


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


Re: polyphonic music with tablature

2005-11-10 Thread Mats Bengtsson

The {...} \\ {...}  feature is limited to only handle ordinary music
voices, please read in 6.6.2 Explicitly instantiating voices to understand
exactly what it does.

I guess the simplest solution is to do something like

upperVoice = {
 \time 4/4
 \key c \major
 f'4\1 c'8\2 ...
}

lowerVoice = {
 f2\4 a2\3 ...
}

\score{
 \context StaffGroup 
   \new Staff { \clef G_8  \upperVoice \\ \lowerVoice  }
   \new TabStaff  \new TabVoice {\upperVoice } \new TabVoice 
{\lowerVoice } 

 
}

  /Mats


Art Sulger wrote:

I'm not having much luck printing out polyphonic music on a treble clef with 
guitar tab just below. The following code prints the notes twice on the 
treble clef and nothing on the tab. I've tried several variations of this, 
but so far haven't hit on the right way to do it. Please help.

Thanks,
Art
---
%test.ly
\version 2.6.4
\layout {

}
melody = {
 \time 4/4
 \key c \major
 
%  \stemUp
 {
 f'4\1 c'8\2[ c'\2] ~ c'4 f'4\1 |
 f8[ f'\1]~ f'4 s4 s8 f'8\1
 }
 \\
%  \stemDown
 {
 f2\4 a2\3 |
 f2\4 a2\3
 }
 
}
\context StaffGroup 
 \context Staff { \clef G_8 \melody }
 \context TabStaff { \melody }
 




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



--
=
Mats Bengtsson
Signal Processing
Signals, Sensors and Systems
Royal Institute of Technology
SE-100 44  STOCKHOLM
Sweden
Phone: (+46) 8 790 8463 
   Fax:   (+46) 8 790 7260
Email: [EMAIL PROTECTED]
WWW: http://www.s3.kth.se/~mabe
=



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


Re: \score, \midi, etc.

2005-11-10 Thread Mats Bengtsson

I would recommend to move your \time command into (at least) one of the
Staff contexts. Then you can do
\score{
 \context ChoirStaff 
   \context Staff = bari 
 \time 4/4
 \clef bass
 ...
   
  ...
 
}

Note that the syntax for the \score{...} block is

\score{
 music expression
 optional layout block
 optional midi block
 optional header block
}
and that you only can have a single music expression at the top level 
inside the

\score{...} block.

   /Mats


Markian Hlynka wrote:



ok, I think I've solved several of my ongoing issues. But, I'm not  
sure I understand why. I now have:

\score
{
{
\time 4/4
\context ChoirStaff

\context Staff = bari

\clef bass
\context Voice = themusic \mainvoice
\lyricsto themusic \new Lyrics \mainwords


\context Staff = bass

\clef bass
\secondvoice


}
\layout{ }
\midi { \tempo 4=20 }
}

But, I needed to put in the extra { } around the music inside there.  
What's up with that? The templates in chapter three don't do this, so  
I'm completely confused.


And then there's the midi thing. no matter what I set the midi tempo  
to, I always hear the same thing. I'm using Lilypad... could that be  
a cause? But I've tried exporting to a file and playing in an  
external player, and it makes no difference!


Should I be setting up my score in a different way?

Thanks,

Markian



Early to bed and early to rise, makes a man stupid and blind in the  
eyes.

 --Mazer Rackham




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



--
=
Mats Bengtsson
Signal Processing
Signals, Sensors and Systems
Royal Institute of Technology
SE-100 44  STOCKHOLM
Sweden
Phone: (+46) 8 790 8463 
   Fax:   (+46) 8 790 7260
Email: [EMAIL PROTECTED]
WWW: http://www.s3.kth.se/~mabe
=



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


Re: Finding note coordinates in output

2005-11-10 Thread Han-Wen Nienhuys

Chris Snyder wrote:
Is there a way to find out what the coordinates are of notes in scores 
generated by Lilypond? For instance, is there a way to get the data 
needed to generate an image map to go with a PNG file and allow notes to 
be clicked on? Thanks in advance.


Yes, that is possible. Getting at it is slightly technical, since the 
PNG file is cropped and there are a couple of scale-conversions in between.


If you want, I can create an example for you as a sponsored feature/example.

--

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


Re: Question about generating sakura-sakura.ly

2005-11-10 Thread Han-Wen Nienhuys

Bob Koon wrote:

It seems that the program will access msgothic.ttc when there is some non-ascii
character. Any idea to fix it? Because in fact I am a chinese user and hope that
the lilypond support the Chinese lyrics.


You have to get hold of a Chinese .TTF or .OTF file, and select that, 
using the font-name property.


TTC files are not supported, I'd love to work on this as a sponsored 
feature, though.


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


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


Re: 2 conversion problems 2.4.6-2.6.3

2005-11-10 Thread Sven Axelsson
On 10 Nov 2005 06:47:34 GMT, Raphael Manfredi [EMAIL PROTECTED] wrote:
Quoting Gilles [EMAIL PROTECTED] from ml.lilypond.users::For Linux: gucharmapYes, but since lilypond does not understand the Unicode escape syntax
(e.g. \u2014 for EM DASH) produced by gucharmap, this is rather useless.There should be a way for lilypond to accept Unicode escape sequences.There is, albeit a bit verbose:#(ly:export (ly:wide-char-utf-8 #x2014)) 
-- Sven Axelsson
___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: 4-voice, 3-staff score with 2 lines of lyrics

2005-11-10 Thread Mats Bengtsson

Popular question today! See my answer to basically the same question in
http://www.mail-archive.com/lilypond-user%40gnu.org/msg18614.html

  /Mats

CSÉCSY László wrote:


Hi Lilypond people,

I have been trying this stuff to render well since days, digging deeper
and deeper into the docs, but without success. Attached is an extract to
show my progress and to get help.

The beginning is a 7-measure intro (played on piano), the last measure
shown to the choir. The problem is: I can not get the ABCDEFGH lyrics
line rendered, which is going to be the lyrics for both soprano and alt.
(Tenor and bass has the same, abcdefgh lyrics, which is rendered
right.) I enclosed those into a \book because there are going to be some
unisono parts as well, which are a snap.

I think the whole problem is that I have single staff poliphony (soprano
and alt on the same staff, but not as chords) versus only one line of
lyrics.

So please help me: what should I write into that .ly to have it rendered
as it should?



\version 2.7.14

#(set-global-staff-size 20)

PartASopAltStaff = \relative c' {
\set Staff.instrument = \markup { \column { S A } }
\clef violin
\time 4/4
\override MultiMeasureRest #'expand-limit = 1

R1*6 |
 {
c8 d e f g a b c |
e,4 f g a | b c d e
} \\
{
s1 |
c,4 d e f | g a b c
} 
}

PartATenStaff = \relative c' {
\set Staff.instrument = #T
\clef violin
\time 4/4
\override MultiMeasureRest #'expand-limit = 1

R1*6 | R1 |
g4 a b c | d e f g
}

PartABasStaff = \relative c {
\set Staff.instrument = #B
\clef bass
\time 4/4
\override MultiMeasureRest #'expand-limit = 1

R1*6 | R1 |
c4 d e f | g a b c
}

PartASopAltText = \lyricmode {
_ _ _ _ _ _ _ _
A B C D E F G H
}

PartATenText = \lyricmode {
a b c d e f g h
}

\book {
\header {
title = 4-voice 3-staff
}
\score {
\context StaffGroup 
\context Staff = cStaffAA 
\context Voice = cStaffAA \PartASopAltStaff

\context Lyrics = cStaffAA \lyricsto cStaffAA 
\PartASopAltText

\context Staff = cStaffAB 
\context Voice = cStaffAB \PartATenStaff

\context Lyrics = cStaffAB \lyricsto cStaffAB 
\PartATenText

\context Staff = cStaffAC 
\context Voice = cStaffAC \PartABasStaff


\set Score.skipBars = ##t

\midi { \tempo 4 = 100 }
\layout {
indent = 0\cm
}
}
}


 




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



--
=
Mats Bengtsson
Signal Processing
Signals, Sensors and Systems
Royal Institute of Technology
SE-100 44  STOCKHOLM
Sweden
Phone: (+46) 8 790 8463 
   Fax:   (+46) 8 790 7260
Email: [EMAIL PROTECTED]
WWW: http://www.s3.kth.se/~mabe
=



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


Re: 2 conversion problems 2.4.6-2.6.3

2005-11-10 Thread Gilles
Hi.

  There should be a way for lilypond to accept Unicode escape sequences.
 
 
 There is, albeit a bit verbose:
 
 #(ly:export (ly:wide-char-utf-8 #x2014))
  

Thanks; I was looking for this in the manual but couldn't find it.
Is it there?

Also, do you know why the space after the colon doesn't show up in the
output?

%-
\version 2.6.3

emdash = #(ly:export (ly:wide-char-utf-8 #x2014))

\header {
  title = \markup { This is an em dash:  \emdash }
}

\score {
  { a' }
}
%-


Best,
Gilles


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


Re: polyphonic music with tablature

2005-11-10 Thread Art
Thanks Matt,
That solution works perfectly.
Art



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


Re: The frust is growing up ... Was: Re: giving up frustrated ... :-(

2005-11-10 Thread Mats Bengtsson

Sorry for taking so long. First of all, I can tell you that the latest
autopackage installer, version 2.6.4.3 from the Downloads page at
lilypond.org works excellently on Debian stable.

If you want to compile it yourself, you can use standard versions of
all tools, except that you need to download and compile new versions
of fontforge and mftrace, see links at
http://lilypond.org/doc/v2.6/Documentation/topdocs/out-www/INSTALL.html
(note that all tools that mftrace depends on, can be taken from the
standard Debian packages).

Regards

  /Mats

Roland Goretzki wrote:


Hello list, hello /Mats,

You wrote:

 


The easiest solution for you is probably to compile the program yourself.
I'll do it myself on Debian Sarge in the coming days and can send detailed
instructions, but it seems that the only thing you need to compile in 
addition

to lilypond is a newer version of fontforge, which can be downloaded from
fontforge.sf.net.
   



Okay, I'll wait a little bit, until You succeeded with installing.
Could You please inform me then?
Otherwise I can ask again after about one week ... :-)

Thank You and Best Regards   Roland


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



--
=
Mats Bengtsson
Signal Processing
Signals, Sensors and Systems
Royal Institute of Technology
SE-100 44  STOCKHOLM
Sweden
Phone: (+46) 8 790 8463 
   Fax:   (+46) 8 790 7260
Email: [EMAIL PROTECTED]
WWW: http://www.s3.kth.se/~mabe
=



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


Re: New and bug-free 2.6.4-4 for Windows

2005-11-10 Thread Mats Bengtsson



Jan Nieuwenhuizen wrote:


Mats Bengtsson writes:

 


...


but now lilypond.exe doesn't seem to do anything useful.
   



How odd.  I can't imaging changing anything except for fixing argv0
 

My fault, I had a .ly file that only produced a .midi output and kept 
looking

for .ps and .pdf.  I had some other weird Windows problems at the same time
that took most of my attention. ;-)

Also, with version 2.6.4-5, I get printouts in the command window again.

Now I just have to fiddle a bit with lilypond-book to make it run on
Win.

  /Mats



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


New to the list, question about lilypond-book

2005-11-10 Thread Vaylor Trucks
First of all, let me say that I am super impressed with LilyPond.  Up to 
this point I have been scrimping by with a patchwork of Finale Notepad, 
Cakewalk, and hand-drawn ugliness.  Discovering LilyPond has been a real 
treat.


I hope this is an easy one.  I searched the archives but didn't see any 
direct mention of this.  I have LilyPond running on Windows XP.  What I have 
discovered is that the lilypond-book.py script seems to have some problems 
with spaces in the path name.  For example.  If I have an HTML file stored 
in


c:\documents and settings\vtrucks\desktop

then I get no output and simply the usage statement is returned.  This is 
even if the path is enclosed in quotes.  If I move the .html I am converting 
to a place where there are no spaces in the filename, then I get a little 
further.  For example if I run


lilypond-book.py --output=c:\output c:\test.html

Then it seems to process everything, however the HTML file is never created 
in the output directory and I get the following error:


C:\Program Files\LilyPond\usr\binlilypond-book.py --output=c:\output 
C:\test.ht

ml
lilypond-book.py (GNU LilyPond) 2.6.4
Reading C:\test.html...
Dissecting...
Writing snippets...
Processing...
Running lilypond...GNU LilyPond 2.6.4
warning: can't find file: `'
Processing `snippet-map.ly'
Parsing...
Processing `C:  est.html:6 (lily-533600811.ly)'
Parsing...
Interpreting music... [1]
Preprocessing graphical objects...
Calculating line breaks...
Writing lily-533600811-systems.tex...
Writing lily-533600811-systems.texi...
Layout output to `lily-533600811-1.eps'...
Layout output to `lily-533600811.eps'...
Converting to PNG...
error: failed files: Files\\LilyPond\\usr\\bin

lilypond-book.py: error: Process lilypond --formats=ps,png --backend eps  -I 
C:\
Program Files\LilyPond\usr\bin snippet-map.ly lily-533600811 exited 
unsuccessful

ly.
Removing `test.html'

As a final test - I made a copy of the c:\program files\lilypond directory 
and saved it under the root of c:\.  If I run lilypond-book.py from that 
copy (so that it is located in c:\lilypond\usr\bin rather than c:\program 
files\lilypond\usr\bin) then the script completes successfully and 
everything is created properly.


So, is there something I can change in the lilypond-book.py file to correct 
this?


Vaylor Trucks




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


Re: New to the list, question about lilypond-book

2005-11-10 Thread Han-Wen Nienhuys

Vaylor Trucks wrote:
First of all, let me say that I am super impressed with LilyPond.  Up to 
this point I have been scrimping by with a patchwork of Finale Notepad, 
Cakewalk, and hand-drawn ugliness.  Discovering LilyPond has been a real 
treat.


thanks!

So, is there something I can change in the lilypond-book.py file to 
correct this?


Try applying the patch attached.

--
 Han-Wen Nienhuys - [EMAIL PROTECTED] - http://www.xs4all.nl/~hanwen
? .lineno
? 1000.scsm
? Lily_piano.socket
? System
? ab
? add
? aly
? arial.pfa
? ay
? ay.tar.gz
? aybabtu.afm
? b
? bench.sh
? bla
? bla.lytex
? calls
? cf2.zip
? cffpats
? conf32255.sh
? config-g16.hh
? config-g164.hh
? config-g164.make
? config-g16nothread.hh
? config-g16nothread.make
? config-g16opt.hh
? config-opt.hh
? config-optsize.hh
? config-optsize.make
? config-prof.hh
? config-speed.hh
? config-speed.make
? configure
? cont
? cp.out
? crashes
? d
? dif
? example-1.socket
? example-1.texstr
? exp.scm
? fcc.c
? fi.py
? fingpats
? firefox.icns
? fondu3FB3-2
? fondu_src-050825.tgz
? fontconfig
? fontconfig.c
? foo
? foo.c
? glob
? grob-array-pats
? gsbug-inv
? gspatch
? gstest
? hello
? hello.utf
? htpasswd
? invstrength
? les-nereides.dsc
? les-nereides.texstr
? les-nereides.textmetrics
? lib
? lilymydear.zip
? lilypond-2.6.0-2.7.0.diff
? lilypond-internals.texi
? lilypond-tools.zip
? log
? lppats
? lute_archives
? m
? makefile.pango
? makelily.py
? mehl
? morgenlied.lpm
? morgenlied.texstr
? mozart-hrn-3.socket
? munix
? notitle.zip
? o
? ok
? os
? otftest.c
? out-g164
? out-g16nothread
? out-optsize
? out-speed
? out.ai
? out.pfa
? out.sk
? out.spsc
? p
? p2
? pango
? pango.c
? patent
? polyprof
? quotpats
? re
? setup.ini
? sf.ai
? simple-song.twy
? socket-output
? stat
? string
? sys
? t2.c
? talk.py
? test.scm
? test.socket
? test.socket.socket
? timtekst
? ud
? uninstalldirs
? us
? usr
? ver
? wrap.scm
? wtk-prof
? wtk-prof2
? wtk1-fugue2.scm
? wtk1-fugue2.socket
? Documentation/out-g164
? Documentation/out-optsize
? Documentation/bibliography/out-g164
? Documentation/bibliography/out-optsize
? Documentation/misc/out-g164
? Documentation/misc/out-optsize
? Documentation/pictures/out-g164
? Documentation/pictures/out-optsize
? Documentation/topdocs/out-g164
? Documentation/topdocs/out-optsize
? Documentation/user/out-g164
? Documentation/user/out-optsize
? buildscripts/out-g164
? buildscripts/out-optsize
? cygwin/out-g164
? cygwin/out-optsize
? debian/out-g164
? elisp/out-g164
? elisp/out-optsize
? flower/out-g164
? flower/out-optsize
? flower/include/out-g164
? flower/include/out-optsize
? input/bla
? input/follow-voice-break.pdf
? input/follow-voice-break.ps
? input/out-g164
? input/out-optsize
? input/mutopia/out-g164
? input/mutopia/out-optsize
? input/mutopia/E.Satie/out-g164
? input/mutopia/E.Satie/out-optsize
? input/mutopia/F.Schubert/out-g164
? input/mutopia/F.Schubert/out-optsize
? input/mutopia/J.S.Bach/out-g164
? input/mutopia/J.S.Bach/out-optsize
? input/mutopia/R.Schumann/out-g164
? input/mutopia/R.Schumann/out-optsize
? input/mutopia/W.A.Mozart/out-g164
? input/mutopia/W.A.Mozart/out-optsize
? input/no-notation/out-g164
? input/no-notation/out-optsize
? input/regression/out-g164
? input/regression/out-optsize
? input/test/out-g164
? input/test/out-optsize
? input/tutorial/out-g164
? input/tutorial/out-optsize
? input/tutorial/out-prof
? input/tutorial/out-www
? kpath-guile/out
? kpath-guile/out-g16
? kpath-guile/out-g164
? kpath-guile/out-g16nothread
? kpath-guile/out-g16opt
? kpath-guile/out-opt
? kpath-guile/out-optsize
? kpath-guile/out-prof
? kpath-guile/out-speed
? kpath-guile/out-www
? lily/gmon.out
? lily/out
? lily/out-g16
? lily/out-g164
? lily/out-g16nothread
? lily/out-g16opt
? lily/out-opt
? lily/out-optsize
? lily/out-prof
? lily/out-speed
? lily/out-www
? lily/parser.output
? lily/include/out
? lily/include/out-g16
? lily/include/out-g164
? lily/include/out-g16nothread
? lily/include/out-g16opt
? lily/include/out-opt
? lily/include/out-optsize
? lily/include/out-prof
? lily/include/out-speed
? lily/include/out-www
? ly/out
? ly/out-g16
? ly/out-g164
? ly/out-g16nothread
? ly/out-g16opt
? ly/out-opt
? ly/out-optsize
? ly/out-prof
? ly/out-speed
? ly/out-www
? make/out
? make/out-g16
? make/out-g164
? make/out-g16nothread
? make/out-g16opt
? make/out-opt
? make/out-optsize
? make/out-prof
? make/out-speed
? make/out-www
? mf/Fontmap
? mf/feta-braces-e.600pk
? mf/feta20.600pk
? mf/feta23.afm
? mf/feta23.pfa.raw
? mf/ffbug.tar.gz
? mf/ffbug.zip
? mf/mftrace.dir
? mf/out
? mf/out-g16
? mf/out-g164
? mf/out-g16nothread
? mf/out-g16opt
? mf/out-opt
? mf/out-optsize
? mf/out-prof
? mf/out-speed
? mf/out-www
? po/out
? po/out-g16
? po/out-g164
? po/out-g16nothread
? po/out-g16opt
? po/out-opt
? po/out-optsize
? po/out-prof
? po/out-speed
? po/out-www
? ps/out
? ps/out-g16
? ps/out-g164
? ps/out-g16nothread
? ps/out-g16opt
? ps/out-opt
? ps/out-optsize
? ps/out-prof
? ps/out-speed
? ps/out-www
? python/convertrules.pyc
? 

Re: [OT] was: Re: lilypond fonts and inkscape

2005-11-10 Thread Erik Sandberg
On Wednesday 09 November 2005 11.09, Sean Reed wrote:
 btw:

 this program (inkscape) looks excitingly promising as an alternative
 to illustrator, but unfortunately opening .ps files appears to still
 only be a working function on linux and not yet on osx!

I've been playing with inkscape too, with similar experience IIRC. Due to the 
nature of PostScript, it is difficult (or even impossible) to create a 
program that can import any PostScript file.

It might work better if you do ps2ps or ps2pdf on the file before importing.

-- 
Erik


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


Re: New to the list, question about lilypond-book

2005-11-10 Thread Vaylor Trucks
I'm very sorry if this is covered in the manual or somewhere online, but can 
someone explain to me how to implement the patch?


Vaylor



From: Han-Wen Nienhuys [EMAIL PROTECTED]



Try applying the patch attached.

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





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


Problems Running lilypond First Time

2005-11-10 Thread Michael Carroll
I'm trying to run for the first time on a SuSE 9.0 Linux installation with 
2.6.8: 
 
(process:23846): GLib-GObject-CRITICAL **: g_object_ref: assertion 
`G_IS_OBJECT (object)' failed 
 
** (process:23846): CRITICAL **: _pango_engine_shape_shape: assertion 
`PANGO_IS_FONT (font)' failed 
 
** ERROR **: file shape.c: line 75 (pango_shape): assertion failed: 
(glyphs-num_glyphs  0) 
aborting... 
Aborted 
 
BTW:  I love your documentation, your design philosophy, your attitude, your 
good karma!   Thank you very much for lilypond.  At last this looks like a 
program that will let me compose music like I write software:  from the top 
down 



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