Re: Lilypond 2.8.1 slow on WindowsXP

2006-04-04 Thread Sotaro


Mats Bengtsson-4 wrote:
 
 This problem was solved in the 2.8.0-5 package for Windows, but
 according to 
 http://lists.gnu.org/archive/html/bug-lilypond/2006-03/msg00332.html
 you are not the only one to experience that the problems have returned 
 in version 2.8.1.
 

So, does that mean that there is no solution at the moment for 2.8.1?

Regards,

Sotaro
--
View this message in context: 
http://www.nabble.com/Lilypond-2.8.1-slow-on-WindowsXP-t1385463.html#a3739393
Sent from the Gnu - Lilypond - User forum at Nabble.com.



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


Re: time signature with note in denominator

2006-04-04 Thread Jos Smeets
On Mon, 03 Apr 2006 21:13:12 +0200
Mats Bengtsson [EMAIL PROTECTED] wrote:

 The basic ideas are described in the section on Polymetric Notation
 in the manual. The trick is to typeset the time signature using
 text markup commands, where it is easy to insert also note symbols.

Ah, I hadn't looked there yet. Anyway, when I try to compile
thefollowing snippet:

% create 2/4 + 5/8
tsMarkup =\markup {
  \number {
\column { 2 4 }
\musicglyph #scripts.stopped
\bracket \column { 5 8 }
  }
}

{
  \override Staff.TimeSignature #'stencil = #ly:text-interface::print
  \override Staff.TimeSignature #'text = #tsMarkup
  \time 3/2
  c'2 \bar : c'4 c'4.
}


I get a compilation error:

GNU LilyPond 2.7.28
Processing `gezang75.ly'
Parsing...unnamed port: In expression ly:textinterface::print:
unnamed port: Unbound variable: ly:textinterface::print

I suppose the line
\override Staff.TimeSignature #'stencil = #ly:text-interface::print
is supposed to make liypond print the new time signature ins stead of
the standard one. Why doesn't it work for me? Wrong version?

Jos


 
/Mats
 
 Quoting Jos Smeets [EMAIL PROTECTED]:
 
  Hello all,
 
  I am typesetting a score which has a non-standard time signature in
  the original. E.g. for 4/2 it has a half note symbol in the
  denominator instead of the number 2. So, it is like using
  TimeSignature single-digit, but with the digit shifted up a bit
  and a not symbol underneath it. Is it possible to do this in
  Lilypond?
 
  (I'm using 2.7.28 on Linux.)

-- 
Jos Smeets/Quixote, Deventer, The Netherlands
http://www.classical-composers.org/
http://www.quixote.nl/


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


Re: Lilypond 2.8.1 slow on WindowsXP

2006-04-04 Thread David Feuer
Fortunately, there's a workaround.  As Han-Wen explained:
  I suggest to use the workaround, ie. to run
fc-cache.exe in
 C:/windows/fonts/ . I've verified that this works
  over  here. Note that
  you'll need to remove Read-only and System
  attributes to
 C:/Windows/fonts/ to make this work, ie

 cmd -

cd \windows
attrib -r -s fonts
fc-cache.exe fonts

David Feuer

On 4/3/06, Sotaro [EMAIL PROTECTED] wrote:


 Mats Bengtsson-4 wrote:
 
  This problem was solved in the 2.8.0-5 package for Windows, but
  according to
  http://lists.gnu.org/archive/html/bug-lilypond/2006-03/msg00332.html
  you are not the only one to experience that the problems have returned
  in version 2.8.1.
 

 So, does that mean that there is no solution at the moment for 2.8.1?

 Regards,

 Sotaro
 --
 View this message in context:
 http://www.nabble.com/Lilypond-2.8.1-slow-on-WindowsXP-t1385463.html#a3739393
 Sent from the Gnu - Lilypond - User forum at Nabble.com.



 ___
 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: time signature with note in denominator

2006-04-04 Thread David Feuer
On 4/3/06, Jos Smeets [EMAIL PROTECTED] wrote:
 Hello all,

 I am typesetting a score which has a non-standard time signature in the
 original. E.g. for 4/2 it has a half note symbol in the denominator
 instead of the number 2. So, it is like using TimeSignature
 single-digit, but with the digit shifted up a bit and a not symbol
 underneath it. Is it possible to do this in Lilypond?

I think the most natural way to deal with this (which would likely
require some changes to Lilypond) would be to set the font for the
lower number of the time signature to one that makes the numbers 1, 2,
and 4 look like noteheads.


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


Re: Undocumented \with syntax?

2006-04-04 Thread Erik Sandberg
On Tuesday 04 April 2006 07.50, Rick Hansen (aka RickH) wrote:
 \new Voice=Soprano
 \with {
   \consists Ambitus_engraver
 } { myNotesGoHere }

 ...

 The above example gets a compiler error, saying that the \with was
 unexpected

Try using \context iso. \new.

-- 
Erik


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


Re: What to put where for unicode using jedit?

2006-04-04 Thread Bertalan Fodor

Jay Hamilton, Sound and Silence wrote:

Nicolas was very clear if one is using emacs but what about jedit it 
seems odd that if one cancels out a line with % that it would affect 
how the text coding worked.
So is it the same?  Also I can't find the correct numbers that have 
been referred to in past questions for the rest of

utf-8 whatever.


Sure. You van use on the top or the the bottom of the file.

% :encoding=UTF-8:



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


Re: time signature with note in denominator

2006-04-04 Thread Jos Smeets
On Tue, 4 Apr 2006 00:07:24 -0700
David Feuer [EMAIL PROTECTED] wrote:

 On 4/3/06, Jos Smeets [EMAIL PROTECTED] wrote:
  Hello all,
 
  I am typesetting a score which has a non-standard time signature in
  the original. E.g. for 4/2 it has a half note symbol in the
  denominator instead of the number 2. So, it is like using
  TimeSignature single-digit, but with the digit shifted up a bit
  and a not symbol underneath it. Is it possible to do this in
  Lilypond?
 
 I think the most natural way to deal with this (which would likely
 require some changes to Lilypond) would be to set the font for the
 lower number of the time signature to one that makes the numbers 1, 2,
 and 4 look like noteheads.

That would indeed be the best solution. Don't know if this notation is
common enough to implement this. Don't know how hard it is to do this.

Jos

-- 
Jos Smeets/Quixote, Deventer, The Netherlands
http://www.classical-composers.org/
http://www.quixote.nl/


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


Re: Reverse-direction ties?

2006-04-04 Thread Han-Wen Nienhuys

Dave LaDelfa wrote:


The workaround in other software I've used (predominantly MusicPress) is to
manually set each tie in the wrong direction. The problem with this is that
once you transpose the notes (e.g. to extract a horn or clarinet part) you have
to go through and manually redo any of the ties whose notes have crossed the
center line and flipped stem direction. This seems like it would be a horrendous
nightmare in Lilypond due to the way the scores and parts typically derive from
the same notestream.


Hi,

have a look at lily/tie.cc, get_default_direction().  I can softcode 
this so you can access this as a user - as a sponsored mini-feature (for 
40 eur.)


--

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: Undocumented \with syntax?

2006-04-04 Thread Han-Wen Nienhuys

Rick Hansen (aka RickH) wrote:


\new Voice=Soprano
\with {
\consists Ambitus_engraver
} { myNotesGoHere }

...

The above example gets a compiler error, saying that the \with was
unexpected



Please send a full bugreport including minimal .ly file.

--

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: Markup next to a note:

2006-04-04 Thread Colin Wilding

You could use embedded Postscript.  It may take a while to get the hang of it
(especially if you have not used Postscript before) but it is very powerful
and it is invisible to Lilypond, so you can put objects anywhere and
Lilypond will not move things around to avoid them.  For example, I have
used it to put in a large bracket where two lyric lines merge into one.

Colin



Mats Bengtsson-4 wrote:
 
 Not that I know of. The only thing you can place to the left/right
 of a note is fingering instructions and I don't know any trick to fool 
 LilyPond into typesetting anything else than numbers as fingerings. 
 Maybe someone feels like sponsoring Han-Wen to implement a more general 
 solution, you are certainly not the first one to ask the question.
 
/Mats
 
 Quoting Geoff Horton [EMAIL PROTECTED]:
 
 I want to put a small script to the left of a note. This puts it 
 below the note:

 d2_\markup \small \italic Org.

 Is there any way short of using manual offsets to move it?

 Geoff


 ___
 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
 
 
--
View this message in context: 
http://www.nabble.com/Markup-next-to-a-note%3A-t1387127.html#a3743203
Sent from the Gnu - Lilypond - User forum at Nabble.com.



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


Re: Lilypond 2.8.1 slow on WindowsXP

2006-04-04 Thread Sotaro

Thanks!

I will try that when I get home.

Best regards,

Sotaro


David Feuer-2 wrote:
 
 Fortunately, there's a workaround.  As Han-Wen explained:
   I suggest to use the workaround, ie. to run
 fc-cache.exe in
 C:/windows/fonts/ . I've verified that this works
   over  here. Note that
   you'll need to remove Read-only and System
   attributes to
 C:/Windows/fonts/ to make this work, ie

 cmd -

cd \windows
attrib -r -s fonts
fc-cache.exe fonts
 
 

--
View this message in context: 
http://www.nabble.com/Lilypond-2.8.1-slow-on-WindowsXP-t1385463.html#a3743465
Sent from the Gnu - Lilypond - User forum at Nabble.com.



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


Re: Markup next to a note:

2006-04-04 Thread Colin Wilding

Like this, for example:

--
\version 2.8.0
cwpsDef = \markup { \postscript #
/CMWFont { /CenturySchL-Roma findfont 2 scalefont setfont } bind def
/CMWOrg { CMWFont (Org.) show } def 

}

cwpsOrg = \markup { \postscript #-4 1.5 moveto CMWOrg }

music = \relative c' { 
e4 f g a-\cwpsOrg b c d-\cwpsOrg e 
}
\header { 
title = Title
subsubtitle = \cwpsDef
}

\score { \new Staff { \new Voice { \music } } }
\layout { }

--

Note that the Postscript definitions are hidden in the subsubtitle - that
means that you can put quite a lot in there and refer to it later.
The font definition is machine-specific - I worked out what to use by
examining the .ps file from a simple score.
The position of the text is determined by the statement '-4 1.5 moveto'. 
You can tweak this by trial and error.
The size of the text is determined by the '2' before scalefont.



Colin





Colin Wilding wrote:
 
 You could use embedded Postscript.  It may take a while to get the hang of
 it (especially if you have not used Postscript before) but it is very
 powerful and it is invisible to Lilypond, so you can put objects anywhere
 and Lilypond will not move things around to avoid them.  For example, I
 have used it to put in a large bracket where two lyric lines merge into
 one.
 
 Colin
 
 
 
 Mats Bengtsson-4 wrote:
 
 Not that I know of. The only thing you can place to the left/right
 of a note is fingering instructions and I don't know any trick to fool 
 LilyPond into typesetting anything else than numbers as fingerings. 
 Maybe someone feels like sponsoring Han-Wen to implement a more general 
 solution, you are certainly not the first one to ask the question.
 
/Mats
 
 Quoting Geoff Horton [EMAIL PROTECTED]:
 
 I want to put a small script to the left of a note. This puts it 
 below the note:

 d2_\markup \small \italic Org.

 Is there any way short of using manual offsets to move it?

 Geoff


 ___
 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
 
 
 
--
View this message in context: 
http://www.nabble.com/Markup-next-to-a-note%3A-t1387127.html#a3743497
Sent from the Gnu - Lilypond - User forum at Nabble.com.



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


Re: Markup next to a note:

2006-04-04 Thread Mats Bengtsson

What's the point of using embedded postscript instead
of just using the extra-offset property on an ordinary text
script?

/Mats

Colin Wilding wrote:


Like this, for example:

--
\version 2.8.0
cwpsDef = \markup { \postscript #
/CMWFont { /CenturySchL-Roma findfont 2 scalefont setfont } bind def
	/CMWOrg { CMWFont (Org.) show } def 
	

}

cwpsOrg = \markup { \postscript #-4 1.5 moveto CMWOrg }

music = \relative c' { 
	e4 f g a-\cwpsOrg b c d-\cwpsOrg e 
}
\header { 
	title = Title

subsubtitle = \cwpsDef
}

\score { \new Staff { \new Voice { \music } } }
\layout { }

--

Note that the Postscript definitions are hidden in the subsubtitle - that
means that you can put quite a lot in there and refer to it later.
The font definition is machine-specific - I worked out what to use by
examining the .ps file from a simple score.
The position of the text is determined by the statement '-4 1.5 moveto'. 
You can tweak this by trial and error.

The size of the text is determined by the '2' before scalefont.



Colin





Colin Wilding wrote:
 


You could use embedded Postscript.  It may take a while to get the hang of
it (especially if you have not used Postscript before) but it is very
powerful and it is invisible to Lilypond, so you can put objects anywhere
and Lilypond will not move things around to avoid them.  For example, I
have used it to put in a large bracket where two lyric lines merge into
one.

Colin



Mats Bengtsson-4 wrote:
   


Not that I know of. The only thing you can place to the left/right
of a note is fingering instructions and I don't know any trick to fool 
LilyPond into typesetting anything else than numbers as fingerings. 
Maybe someone feels like sponsoring Han-Wen to implement a more general 
solution, you are certainly not the first one to ask the question.


  /Mats

Quoting Geoff Horton [EMAIL PROTECTED]:

 

I want to put a small script to the left of a note. This puts it 
below the note:


d2_\markup \small \italic Org.

Is there any way short of using manual offsets to move it?

Geoff


___
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


 


--
View this message in context: 
http://www.nabble.com/Markup-next-to-a-note%3A-t1387127.html#a3743497
Sent from the Gnu - Lilypond - User forum at Nabble.com.



___
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: Markup next to a note:

2006-04-04 Thread Colin Wilding

None, really - I confess I hadn't learnt how to use extra-offset and wasn't
aware that you could use it to get the text to appear overlaid on the staff.

The Postscript comes into its own when adding a piece of text in the normal
way would push other objects out of the way (as with a bracket spanning
lyrics).  It also allows you to do lots of clever things.  But it's probably
a sledgehammer to crack a nut in this case.


Colin


Mats Bengtsson-4 wrote:
 
 What's the point of using embedded postscript instead
 of just using the extra-offset property on an ordinary text
 script?
 
  /Mats
 
 
--
View this message in context: 
http://www.nabble.com/Markup-next-to-a-note%3A-t1387127.html#a3744380
Sent from the Gnu - Lilypond - User forum at Nabble.com.



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


Re: Producing postscript for custom paper size (9x12 manuscript paper)?

2006-04-04 Thread John Hawkinson
Han-Wen Nienhuys [EMAIL PROTECTED] wrote on Tue,  4 Apr 2006
at 12:41:47 +0200 in [EMAIL PROTECTED]:

 should be generating a %%DocumentMedia comment, which can include
 
 it does, at least 2.8 does.

Whoops, so it does. Sorry about that.

 I don't think there were any printer-specifics in the code in my
 email.  It should work for any compliant Level 2 or Level 3 Postscript
 
 I thought I saw ManualFeed in there? Doesn't that make sense only for 
 certain printers

In the current patch (which was more intended as how I solved this
and not really prepared for verbatim inclusion), /ManualFeed true is
set for level 2 PostScript printers if you have 9x12 paper, because
there is unlikely to be a paper tray containing that paper.

/ManualFeed is part of the postscript standard, and if there are
printers without a manual feed feature, they should simply ignore the
attribute. (Note that /ManualFeed true does not imply that there is
necessarily a separate tray. On some printers, it changes the printers
expectation of how an existing paper input will be used and lets it
disregard what it thinks is in the tray.)

Would you prefer to treat it as an option like 'landscape? E.g.:

#(set-default-paper-size manuscript 'manualfeed)

My impression is that this is just an extra option that won't benefit
anyone and would cause confusion, since I don't think anyone would not
want that option.

 Is there a reason you don't want to output the /PageSize info?
 
 No, there's not. I'll gladly consider well written patches to deal with 
 arbitrary paper sizes. The relevant code is in paper.scm ; there needs 
 to be variant of
 
   set-paper-size
 
 which can deal with dimensions, eg. of the form (set-paper-size '((9 . 
 in) (12 . in)) 'landscape)

This is a different problem, and one that seems a little less critical
to solve. It's easy enough for people to edit paper-alist to add new
paper types.

The problem I'm concerned with is once you do that (or if you defined
a set-paper-size that understood dimensions), LilyPond doesn't output
the paper size in the pagedevice dictionary, so printers do not select
the correct size paper.

--jhawk


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


Re: Producing postscript for custom paper size (9x12 manuscript paper)?

2006-04-04 Thread Han-Wen Nienhuys

John Hawkinson schreef:


Would you prefer to treat it as an option like 'landscape? E.g.:

#(set-default-paper-size manuscript 'manualfeed)

My impression is that this is just an extra option that won't benefit
anyone and would cause confusion, since I don't think anyone would not
want that option.


Sounds like a good solution to me, ie. have all optional boolean 
settings as boolean args to set-default-paper-size. People can then also 
use 'manualfeed for any other format of paper that is unlikely to be in 
 a tray.



Is there a reason you don't want to output the /PageSize info?
No, there's not. I'll gladly consider well written patches to deal with 
arbitrary paper sizes. The relevant code is in paper.scm ; there needs 
to be variant of


  set-paper-size

which can deal with dimensions, eg. of the form (set-paper-size '((9 . 
in) (12 . in)) 'landscape)


This is a different problem, and one that seems a little less critical
to solve. It's easy enough for people to edit paper-alist to add new
paper types.

The problem I'm concerned with is once you do that (or if you defined
a set-paper-size that understood dimensions), LilyPond doesn't output
the paper size in the pagedevice dictionary, so printers do not select
the correct size paper.


Well,  I'll consider patches for that too :-)

--

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: Markup next to a note:

2006-04-04 Thread Colin Wilding
This works for me. Notes in my previous email about fonts and tweaking apply here too.



\version 2.8.0
cwpsDef = \markup { \postscript #
 /CMWFont { /CenturySchL-Roma findfont 7 scalefont setfont } bind def
 /CMWBrace { CMWFont /braceright glyphshow } def 
 
}
cwpsBrace = \markup { \postscript #6 -7 moveto CMWBrace }

music = \relative c' { 
 e4 f g a-\cwpsBrace b c d e 
}
\header { 
 title = Title
 subsubtitle = \cwpsDef
}

\score {
 \new Staff 

 \new Voice = singing { \music }
 \new Lyrics \lyricsto singing { The first verse here; now both verses join }
 \new Lyrics {
  \lyricsto singing { This is the second; }
 }
 
}
\layout { }





ColinOn 4/4/06, [EMAIL PROTECTED] [EMAIL PROTECTED]
 wrote:Colin wrote:You could use embedded Postscript.It may take a while to get the hang
of it(especially if you have not used Postscript before) but it is verypowerfuland it is invisible to Lilypond, so you can put objects anywhere andLilypond will not move things around to avoid them.For example, I have
used it to put in a large bracket where two lyric lines merge into one.Hello, would please you post this example of putting brackets spannig,two or three lyric lines? I'm really interested in this. I will be
typesetting some scores that the originals have such things, speciallyif there is a repeat bar.Thank you!Eduardo
Aqui na Oi Internet você ganha ou ganha. Além de acesso grátis com qualidade,ganha contas ilimitadas de email com 1 giga cada uma. Ganha 60 mega para hospedarsua página pessoal. Ganha flog, suporte grátis e muito mais. Baixe grátis o
Discador em http://www.oi.com.br/discador e comece a ganhar.Agora, se o seu negócio é voar na internet sem pagar uma fortuna, assineOi Internet banda larga por apenas R$ 9,90. Clique em
http://www.oi.com.br/bandalarga e aproveite essa bocada!
___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Starting up

2006-04-04 Thread Tomas Valusek

Hello,

I'm a Czech music teacher. I'm visually impaired, so creating scores 
graphically is very tiring for my eyes. I just downloaded and installed 
LilyPond 2.8.1 on WindowsXP Pro Czech edition. As a Czech user, I'd like 
to use Czech accented characters within text elements in LilyPond.


1. I have never used Unicode-capable text editor, all my plain-text 
files are stored using cp1250 codepage. I'd like to use Notepad++ (based 
on Scintilla engine) as an input file editor. Is there any support for 
this editor? How to save an input file so that CZ characters appear 
correctly in output?


2. Is there a way to output LilyPond score as a raster image with preset 
dpi value (e.g. 300, 600 dpi), so that I could create short music 
examples and insert them as images into Windows word processor?


Thank you for your help.

Tomas Valusek


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


From Lilypond ly to Finale

2006-04-04 Thread Ben Fisher
I was impressed with Lilypond's cool and fast syntax. I wrote some songs in it, but now unfortunatelyI need to export those songs back to Finale. (My music professor doesn't like Lilypond...) I've seen that Lilypond has great support for importing other file formats, but had a hard time finding a way to export. Is there a ly to etf, oreven betterly to MusicXML converter?

I tried exporting to a MIDI, and then importing the MIDI in Finale, but of course this lost all articulation.

-Ben



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


RehearsalMark break-visibility

2006-04-04 Thread Daniel Johnson
I've been trying to get a rehearsal mark to show up at the end of a 
staff.  (The object is eventually to use markup such as a fermata 
here.)  Here's a stripped-down example:


% begin lilypond code %
\version 2.8.1
eolMark = {
   \once\override RehearsalMark #'break-visibility = #end-of-line-visible
   \mark\default
   \break
}
\relative c' {
   c d e f g a b c \eolMark
   c b a g f e d c
}
% end lilypond code %

In this example, though, the rehearsal mark shows up at the beginning of 
the second line rather than the end of the first.  Any ideas?


--Daniel

P.S. Running version 2.8.1 on Linux


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


Re: RehearsalMark break-visibility

2006-04-04 Thread Graham Percival


On 4-Apr-06, at 11:46 AM, Daniel Johnson wrote:


eolMark = {
   \once\override RehearsalMark #'break-visibility = 
#end-of-line-visible

% end lilypond code %

In this example, though, the rehearsal mark shows up at the beginning 
of the second line rather than the end of the first.  Any ideas?


Yes, read the manual, 8.1.3 Text marks:

To print the mark at the end of the current line, use

\override Score.RehearsalMark
  #'break-visibility = #begin-of-line-invisible


I don't know why end-of-line-visible doesn't work, but since it isn't 
mentioned in the manual, I don't think it's a serious problem.


You may also want to use
 \once \override Score.RehearsalMark #'self-alignment-X = #right

Cheers,
- Graham



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


Re: RehearsalMark break-visibility SOLVED

2006-04-04 Thread Daniel Johnson

Graham Percival wrote:

Yes, read the manual, 8.1.3 Text marks:

To print the mark at the end of the current line, use

\override Score.RehearsalMark
  #'break-visibility = #begin-of-line-invisible


I don't know why end-of-line-visible doesn't work, but since it isn't 
mentioned in the manual, I don't think it's a serious problem.

http://www.lilypond.org/doc/v2.8/Documentation/user/lilypond-internals/item_002dinterface.html
end-of-line-visible is mentioned here.

None of the break-visibility properties had any effect as long as I was 
doing

   \override RehearsalMark
but they all had an effect (including end-of-line-visible) when I 
specified the following:

   \override Score.RehearsalMark

In hindsight, this is semi-obvious, since before I was inside either the 
Staff or Voice context.


Graham, as always, thanks for your response.

--Daniel


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


Re: LilyPad (was: Change pdf viewer on mac)

2006-04-04 Thread fiëé visuëlle

Am 2006-04-03 um 00:29 schrieb Ed Baskerville:


you could try my little lilypad app:
http://edbaskerville.com/software/lilypad/
a vastly improved version should be out within the month with  
completion, syntax coloring, and hopefully some other nice  
features. i am also planning on releasing it under the gpl.


This are great news!
I really like the general behaviour of LilyPad (and it runs much  
better than jEdit+LilyTool on my Mac).


Some small requests (perhaps everything done already):
- save default size  position of windows (I want editor  preview  
side by side)

- line numbering in editor window!
- please make completion switchable (I find it very nasty in most  
editors, because it gets in your way, swallows keys, slows down  
typing etc.)

- run convert-ly
- switch off auto-preview temporarily (without going to the prefs)
- increase/decrease indent of marked lines using tab/shift-tab (the  
actual keys don't work on every int'l keyboard)
- the MIDI player doesn't understand speed settings (but I guess  
that's beyond your scope)


Regarding auto-preview:
It's really a nice feature, but doesn't yet behave just right.
I'd like to start it with every save (or after the delay) and then  
run through (but stoppable), regardless what I type in the meantime.
For it's not possible to just preview the part I work at, that would  
show my progress better than if I must stop typing to see anything.

Perhaps you can make that behaviour configurable, too.

(I just donated.)

Greetlings from Lake Constance
---
fiëé visuëlle
Henning Hraban Ramm
http://www.fiee.net
http://angerweit.tikon.ch/lieder/
http://www.cacert.org (I'm an assurer)



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


Re: Starting up

2006-04-04 Thread Mats Bengtsson

Quoting Tomas Valusek [EMAIL PROTECTED]:


Hello,

I'm a Czech music teacher. I'm visually impaired, so creating scores 
graphically is very tiring for my eyes. I just downloaded and 
installed LilyPond 2.8.1 on WindowsXP Pro Czech edition. As a Czech 
user, I'd like to use Czech accented characters within text elements 
in LilyPond.


1. I have never used Unicode-capable text editor, all my plain-text 
files are stored using cp1250 codepage. I'd like to use Notepad++ 
(based on Scintilla engine) as an input file editor. Is there any 
support for this editor? How to save an input file so that CZ 
characters appear correctly in output?


The simple answer is that you need an editor that can save
files using UTF-8 encoding. You know more about Notepad++ than I do. 
There are a number of proposed editors listed somewhere in the on-line 
documentation.


2. Is there a way to output LilyPond score as a raster image with 
preset dpi value (e.g. 300, 600 dpi), so that I could create short 
music examples and insert them as images into Windows word processor?


See the section on Invoking LilyPond. I hope you are familiar to the
command prompt in Windows. Then it's easy to use whatever flags to 
LilyPond, such as

lilypond --png myfile.ly

  /Mats



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


Re: Starting up

2006-04-04 Thread Simon Dahlbacka
In the Format menu in Notepad++ you can choose the option Encode in UTF-8 that should be all that is required, hope this helps..regards,SimonOn 4/4/06, 
Mats Bengtsson [EMAIL PROTECTED] wrote:
Quoting Tomas Valusek [EMAIL PROTECTED]: Hello, I'm a Czech music teacher. I'm visually impaired, so creating scores graphically is very tiring for my eyes. I just downloaded and
 installed LilyPond 2.8.1 on WindowsXP Pro Czech edition. As a Czech user, I'd like to use Czech accented characters within text elements in LilyPond. 1. I have never used Unicode-capable text editor, all my plain-text
 files are stored using cp1250 codepage. I'd like to use Notepad++ (based on Scintilla engine) as an input file editor. Is there any support for this editor? How to save an input file so that CZ
 characters appear correctly in output?The simple answer is that you need an editor that can savefiles using UTF-8 encoding. You know more about Notepad++ than I do.There are a number of proposed editors listed somewhere in the on-line
documentation. 2. Is there a way to output LilyPond score as a raster image with preset dpi value (e.g. 300, 600 dpi), so that I could create short music examples and insert them as images into Windows word processor?
See the section on Invoking LilyPond. I hope you are familiar to thecommand prompt in Windows. Then it's easy to use whatever flags toLilyPond, such aslilypond --png myfile.ly
 /Mats___lilypond-user mailing listlilypond-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: Starting up

2006-04-04 Thread Rick Hansen (aka RickH)

Also look into installing jEdit and it's LiiyPond plug in.  Make sure Sun (or
IBM) Java is up-to-date on your machine first.  jEdit has worked out very
nicely for me, and I just started a week ago.


--
View this message in context: 
http://www.nabble.com/Starting-up-t1394437.html#a3754016
Sent from the Gnu - Lilypond - User forum at Nabble.com.



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


Re: Control space between notes?

2006-04-04 Thread Jannik Jeppesen

Hi again...

1. when i use raggedright, it simply makes the bars as small as possible... 
How do i use this function, so that one bar still is one whole line? (or a 
half?)


2. when i use   around 2 different parts, it automaticly puts sets these 
two parts together with a vertical line. As if they where SATB ... Can this 
be done otherwise?


Thanx..

\Jannik
- Original Message - 
From: Mats Bengtsson [EMAIL PROTECTED]

To: David Feuer [EMAIL PROTECTED]
Cc: Jannik Jeppesen [EMAIL PROTECTED]; lilypond-user@gnu.org
Sent: Monday, April 03, 2006 9:02 PM
Subject: Re: Control space between notes?


Apparently, Jannik had two separate \score{...} blocks. As David pointed 
out, one method is to typeset them as a single score with two staves. 
Another is to use raggedright

possibly combined with the proportional engraver.

   /Mats

Quoting David Feuer [EMAIL PROTECTED]:


On 4/3/06, Jannik Jeppesen [EMAIL PROTECTED] wrote:


Hi all
Can anyone tell me why these two different drumstaffs does not look the 
same

in one file?
I whant the notes to be under each other, but they are not... it seems 
that

there are more space between the notes in 2. drumstaff?
Why is that, and how do I control the space between 4. notes, 8. notes
etc...?


You have to put  and  around the two parts to let Lilypond know
they're supposed to happen at the same time.

David Feuer


___
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: Control space between notes?

2006-04-04 Thread Geoff Horton
I think what I would try in your case is setting each row with an
invisible line of sixteenth notes. See if you have a copy of
partial-blank.ly on your computer and use that as a starting point.

Gepff


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


Fwd: MusicXML converter: ImportError: No module named musicxml

2006-04-04 Thread Gerhard G. Tooorges
-- Forwarded message --From: Gerhard G. Tooorges [EMAIL PROTECTED]Date: 
05.04.2006 03:08Subject: Re: MusicXML converter: ImportError: No module named musicxmlTo: Han-Wen Nienhuys [EMAIL PROTECTED]
Hello Han-Wen,I work on Mac OS X 10.3.9.Lilypond version 2.8.1-1 (vBuild from Fri Mar 31 01:38:24 2006).Gerhard2006/4/4, Han-Wen Nienhuys 

[EMAIL PROTECTED]:
Gerhard G. Tooorges wrote: Hello! I am new to Lilypond.
 At the moment, I do all of my work — I am a music teacher and arranger — in Sibelius 4. I used to look on the Lilpond homepage form time to time, because I somehow like the project.
 The engraving gets better and better, thus the tweaks (optical spacing etc.) Today I found MusicXML converter added in the news section. And I wanted to try it.
 But, unfortunately, typing gerhard% ./musicxml2ly only results in Traceback (most recent call last): File ./musicxml2ly, line 27, in ? import musicxml
 ImportError: No module named musicxml Is there anything I can do about it? Where is the missing module?what platform, what version?--Han-Wen Nienhuys - 

[EMAIL PROTECTED] - http://www.xs4all.nl/~hanwenLilyPond 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


No pagebreaks within a score?

2006-04-04 Thread Buddha Buck
I'm trying to put lots of scores in a \book, and I want the output such that no score is split between two pages. I don't care if a page ends up half-full because the next score is too long to fit on the bottom of the page, but requiring my musicians to turn pages is, in this case, bad. 
For the most part, the scores I'm doing are only 4 line long, and I can easily get 2 on a page, but right now lilypond is sometimes wanting to put the header and one line on the bottom of one page under another piece or two, and then the remainder on the next page, and this condition simply propagates through the book.
I've tried adding \score { \pageBreak } between scores where I know pagebreaks should fall, but it doesn't seem to do anything.Does anyone have any suggestions?
___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: No pagebreaks within a score?

2006-04-04 Thread Carrick Patterson
Quoting Buddha Buck [EMAIL PROTECTED]:

 I'm trying to put lots of scores in a \book, and I want the output such that
 no score is split between two pages.  I don't care if a page ends up
 half-full because the next score is too long to fit on the bottom of the
 page, but requiring my musicians to turn pages is, in this case, bad.

 For the most part, the scores I'm doing are only 4 line long, and I can
 easily get 2 on a page, but right now lilypond is sometimes wanting to put
 the header and one line on the bottom of one page under another piece or
 two, and then the remainder on the next page, and this condition simply
 propagates through the book.

 I've tried adding \score { \pageBreak } between scores where I know
 pagebreaks should fall, but it doesn't seem to do anything.

 Does anyone have any suggestions?

In Section 10.5.9 of the manual it suggests:

To force a new page for a new piece (in a collection of pieces or a piece in
several movements), use breakbefore in the header.

Will that work for you?

--
Carrick Patterson
Little Rock AR


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


Reduce space between title and top of the page

2006-04-04 Thread Jefferson dos Santos Felix
here is the code:


\version 2.8.0
\paper
{
 #(set-paper-size a4)
 top-margin = 0.7\cm
 
}

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

\score
{
\relative
{
 c''1 c2 c4 c \break
}
}

\layout {}
%%%

The problem: I can't reduce the top-margin. The source above produces a
incorrect distance between the title and the top of the page (it's
larger than 0.7 cm).
I tried to read manual about page layout and page settings, but I
can't reduce the top margin. How can I reduce this space??? 


Thanks,-- Jefferson dos Santos Felix-felixmusic.net
___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Reduce space between title and top of the page

2006-04-04 Thread Graham Percival


On 4-Apr-06, at 10:14 PM, Jefferson dos Santos Felix wrote:

 The problem: I can't reduce the top-margin. The source above produces 
a incorrect distance between the title and the top of the page (it's 
larger than 0.7 cm).
  I tried to read manual about page layout and page settings, but I 
can't reduce the top margin. How can I reduce this space???


The manual isn't too clear on this exact point.  Use this:

\paper {
  annotate-spacing = ##t
}

to find out what commands are doing what.

(this is documented under Vertical spacing, but not page 
formatting.  This has been fixed in CVS.

- Graham


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


Trouble lining up Fine mark

2006-04-04 Thread David Feuer
I want the right side of the Fine mark to line up with the double bar
line, so I did

... music 
\override Score.RehearsalMark
  #'break-visibility = #begin-of-line-invisible
\once \override Score.RehearsalMark #'self-alignment-X = #right
\mark \markup {\large Fine}
\bar ||
\key bf \major
... music ...

But the Fine ended up aligned to the key change signature.  What am I
doing wrong?  Also, does anyone have a good macro for doing Fine
marks?

David


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