Re: Grand Unified Binaries: 2.7.27 release 3 available

2006-01-13 Thread Han-Wen Nienhuys

John Wiedenhoeft wrote:


I also tried 
[EMAIL PROTECTED]:~$ ~/Dokumente/Software/Linux/lilypond-2.7.27-3.linux.sh

bash: /home/john/Dokumente/Software/Linux/lilypond-2.7.27-3.linux.sh: /bin/sh: 
bad interpreter: Keine Berechtigung


do

  sh ~/Dokumente/Software/Linux/lilypond-2.7.27-3.linux.sh


--
 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: Grand Unified Binaries: 2.7.27 release 3 available

2006-01-13 Thread John Wiedenhoeft
 It should also work if you're a normal user. ~/bin/ is in the PATH in 
 most distributions, isn't it?
 

I thought so. But obviously its not the case on my system. Where can I
see which paths are in and which not?

Regards,
John



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


Ligature brackets missing

2006-01-13 Thread John Wiedenhoeft
Hi all,

using LP 2.7.27, ligature brackets don't show up in the pdf anymore.
Here is an excerpt of the log (it's going on that way):

57v-1_voce_jhesus_amabili.ly:44:44: warning: Ignoring grob for slur.
avoid-slur not set?
c4.(~ \[c16
b! a4)\]

Any ideas? I found only one entry for avoid-slur, which is a bit cryptic
for me.

Could anybody help please,

Thanx,
John



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


Re: Grand Unified Binaries: 2.7.27 release 3 available

2006-01-13 Thread Han-Wen Nienhuys

John Wiedenhoeft wrote:
It should also work if you're a normal user. ~/bin/ is in the PATH in 
most distributions, isn't it?





I thought so. But obviously its not the case on my system. Where can I
see which paths are in and which not?


do

echo $PATH

in the terminal window

--
 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: Grand Unified Binaries: 2.7.27 release 3 available

2006-01-13 Thread Han-Wen Nienhuys

John Wiedenhoeft wrote:

Am Freitag, den 13.01.2006, 11:12 +0100 schrieb Han-Wen Nienhuys:


sh ~/Dokumente/Software/Linux/lilypond-2.7.27-3.linux.sh



okay, I got it:

sudo sh /path/to/my/downloaded/files/lilypond-2.7.27-3.linux.sh

with this command you get an installation that works the exspected way
(i.e. simply type lilypond into a shell, no matter which user you
are), otherwise (withou sudo) one would always have to change the
directory by hand.

maybe this should be mentioned on the LP site for the less experienced
linux users (like me ;-), or the .sh should always prompt for root
password.



It should also work if you're a normal user. ~/bin/ is in the PATH in 
most distributions, isn't it?




--
 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: Grand Unified Binaries: 2.7.27 release 3 available

2006-01-13 Thread John Wiedenhoeft
Am Freitag, den 13.01.2006, 11:12 +0100 schrieb Han-Wen Nienhuys:
 sh ~/Dokumente/Software/Linux/lilypond-2.7.27-3.linux.sh

okay, I got it:

sudo sh /path/to/my/downloaded/files/lilypond-2.7.27-3.linux.sh

with this command you get an installation that works the exspected way
(i.e. simply type lilypond into a shell, no matter which user you
are), otherwise (withou sudo) one would always have to change the
directory by hand.

maybe this should be mentioned on the LP site for the less experienced
linux users (like me ;-), or the .sh should always prompt for root
password.

Thanks for the help,

John



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


Re: moving backwards in time ?

2006-01-13 Thread Erik Sandberg
On Thursday 12 January 2006 23.36, Gilles wrote:
  I can't seem to figure out how to slightly change the structure to make
  it work :-{
 
  I tried with \addlyrics but it shows only one line of the caption
  instead of one for each transposed part...
  Several \addlyrics produce the same problem as \lyricsto.
 
  Any hint?

 Is this what you had in mind?

 %---cut---
 \version 2.6.3

 theNotes = \relative c' {
   \key d \aeolian
   \cadenzaOn
   d4 e f g a bes cis d
   c bes a g f ees d
   \bar |
   d f a2 g bes d a cis e
   \bar ||
   \cadenzaOff
 }

 text = \lyricmode {
   1 2 3 4 5 6 7 8 _ _ _ _ _ _ _ I IV V
   1 2 3 4 5 6 7 8 _ _ _ _ _ _ _ I IV V
 }

 modeOnD = { \theNotes }

 theMusic = \context Staff = Mode \with { \remove
 Time_signature_engraver } {

   
 \context Voice = notes {
   \transpose d d { \modeOnD }
   \break
   \transpose d c { \modeOnD }
 }
 \lyricsto notes \new Lyrics { \text }

 }

 \score {
   \theMusic
   \layout {}
 }
 %---cut---


 It works, but is a real pain because one has to had as many lines of
 exactly the same text as there are going to be transposed parts.
 Furthermore, in the original file setup, the notes (scale) are defined in
 one file (together with the text) and the \score in another.
 Is ther some way (given the current limitation of \lyricsto) to keep
 this separation between data and presentation?

Well, you can put the first half of the text in a variable, and repeat that 
variable twice, as I suggested in my other mail:
text = \lyricmode {
   1 2 3 4 5 6 7 8 _ _ _ _ _ _ _ I IV V
}

[...]

theLyrics =  \context Lyrics = text { \text \text }

-- 
Erik


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


uninstalling lilypond

2006-01-13 Thread Arthur Dyck
I have installed the lilypond-2.7.19 package but have had segmentation fault 
errors that haven't been cleaned up on Mandrake 10.1.  Is there a way to 
uninstall the lilypond but leave the ghostscript?  I would like to try to 
install from source to see if I can get this working.  It seems the package 
removal program takes out both.

Arthur


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


Re: feature request: semi-automatic vertical spacement

2006-01-13 Thread Nicolas Sceaux
Han-Wen Nienhuys [EMAIL PROTECTED] writes:

Thank you for your answer, Han-Wen.

 here is an overview of what needs to be done for this:

 * Refactoring layout-page-layout.scm [...]
 * Adding a routine to walk each page [...]
 * the contents of the table are dumped to a .ly file.
   The \objectid syntax can be used to mark each score with a
   tag,

\book{ \objectid foo
  \score {
\objectid bar
..
  }
}

so the tweaks are dumped to bookfoo-scorebar-pagelayout.ly

If we can omit identifying an implicit \book block, ie at top level:

\score { ... \objectid score1 }
\score { ... \objectid score2 }

that's OK.

 I will add the above for 195 EUR

Please count me for this one (195 EUR). I leave the other (reading
tweaks) for later, or someone else. However, I'll wait your combined
proposal with Trevor's request before actually ordering this feature.

nicolas


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


Re: Grand Unified Binaries: 2.7.27 release 3 available

2006-01-13 Thread Graham Percival


On 13-Jan-06, at 3:21 AM, John Wiedenhoeft wrote:


It should also work if you're a normal user. ~/bin/ is in the PATH in
most distributions, isn't it?


I thought so. But obviously its not the case on my system. Where can I
see which paths are in and which not?


I've always added ~/bin/ to my path myself -- I've never seen it set up 
in the path already.  We certainly shouldn't count on it being there.


- Graham



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


less space between TimeSignature and first note

2006-01-13 Thread Felix Hammer
Hello

I typed Handel Violin-Sonata with Lilypond. I have a little but annoying 
Problem with the space between the TimeSignature and the first note in the 
PianoStaff. There is no problem If i compile the ViolinStaff alone. 

Here is a demo of the problem:

http://www.violin-unterricht.de/damaged.png

i get this console output when i compile:

lilypond HWV370-score.ly
GNU LilyPond 2.6.4.3
»HWV370-score.ly« wird verarbeitet
Analysieren...
Interpretation der Musik...[8][16][24][32][40][48][54]
Vorverarbeitung der grafischen Elemente...
Berechne Zeilenumbrüche...
Programmierfehler: adding reverse spring, setting to unit
Fortsetzung, die Finger kreuzen
[3][6][9][12][15][18][21][24][27][30][33][36][39][42][45][48][51][54][55]
Interpretation der Musik...
MIDI-Ausgabe nach `HWV370-score.midi'...
Spur...
Zeilenumbrüche werden berechnet...[5][9][13]
Layout nach »HWV370-score.ps« ausgeben...
Konvertierung nach »HWV370-score.pdf«...


The first notes are to closed to the TimeSignature. When i leave out the 
left-hand-part or the right-hand-part of the PianoStaff this behavior 
disappears:

http://www.violin-unterricht.de/OkWithoutBass.png
http://www.violin-unterricht.de/OkWithoutMelody.png

in this case i get this console output when i compile:


lilypond HWV370-score.ly
GNU LilyPond 2.6.4.3
»HWV370-score.ly« wird verarbeitet
Analysieren...
Interpretation der Musik...[8][16][24][32][40][48][54]
Vorverarbeitung der grafischen Elemente...
Berechne Zeilenumbrüche... [3][6][9][12][15][18][21][24][27][30][33][36][39]
[42][45][48][51][54][55]
Interpretation der Musik...
MIDI-Ausgabe nach `HWV370-score.midi'...
Spur...
Zeilenumbrüche werden berechnet...[6][13]
Layout nach »HWV370-score.ps« ausgeben...
Konvertierung nach »HWV370-score.pdf«...


Here is the project-package

http://www.violin-unterricht.de/HWV_370_F_major.zip

Can anybody help me? What could be the reason for this problem?

much thanks
Felix


pgpgZzQPJzNok.pgp
Description: PGP signature
___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Inputting special symbols

2006-01-13 Thread Gilles
Hi.

 If you want to concatenate two strings, one method is to
 set the word-space property to zero:
 \markup{\override #'(word-space . 0) \line {1\super st } clarinet }
 

Fine!  It was the \line which I was missing...

Thanks,
Gilles


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


How to run jEdit + LilyPondTool on MacOS X (solution)

2006-01-13 Thread fiëé visuëlle

Hi there!

I had big problems getting jEdit to run with LilyPondTool.
Here's how I got it running:

My environment:
- MacOS X 10.4
- Java 1.5 (alias 5) installed via SoftwareUpdate
- jEdit 4.3pre3
- LilyPondTool 0.2.9 (needs SideKick 0.4)

Someone here wrote that the problem is the used Java version, LPT  
needs 1.5


[[Where is my Java?]]
hr$ java -version
java version 1.4.2_09
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_09-232)
Java HotSpot(TM) Client VM (build 1.4.2-54, mixed mode)
[[We're using the wrong version, but how is it called?]]
hr$ which java
/usr/bin/java
hr$ ls -al /usr/bin/java
lrwxr-xr-x   1 root  hr  57 17 Sep 02:37 /usr/bin/java - /System/ 
Library/Frameworks/JavaVM.framework/Commands/java

hr$ ls -al /System/Library/Frameworks/JavaVM.framework/Commands
lrwxr-xr-x   1 root  wheel  28 17 Sep 02:37 /System/Library/ 
Frameworks/JavaVM.framework/Commands - Versions/CurrentJDK/Commands

hr$ ls -al /System/Library/Frameworks/JavaVM.framework/Versions
total 40
drwxr-xr-x   11 root  wheel  374 14 Jan 02:08 .
drwxr-xr-x   10 root  wheel  340  3 Jan 02:59 ..
lrwxr-xr-x1 root  wheel5  3 Jan 02:59 1.3 - 1.3.1
drwxr-xr-x8 root  wheel  272 16 Jun  2005 1.3.1
lrwxr-xr-x1 root  wheel5 17 Sep 02:37 1.4 - 1.4.2
drwxr-xr-x8 root  wheel  272 16 Jun  2005 1.4.2
lrwxr-xr-x1 root  wheel5  3 Jan 02:59 1.5 - 1.5.0
drwxr-xr-x8 root  wheel  272  3 Jan 02:59 1.5.0
drwxr-xr-x6 root  wheel  204  4 Jan 00:35 A
lrwxr-xr-x1 root  wheel1  3 Jan 02:59 Current - A
lrwxr-xr-x1 root  wheel5 14 Jan 02:08 CurrentJDK - 1.4.2

That means, 'java' calls /System/Library/Frameworks/JavaVM.framework/ 
Versions/1.4.2/Commands/java


[[Switch to Java 1.5]]
hr$ cd /System/Library/Frameworks/JavaVM.framework/Versions
hr$ sudo rm CurrentJDK
[[key in your password]]
hr$ ln -s 1.5 CurrentJDK

Now, 'java' calls /System/Library/Frameworks/JavaVM.framework/ 
Versions/1.5.0/Commands/java

and jEdit+LPT should work.
(It didn't for me in the first call, but in the second, strange...)


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