Re: Psalm notation

2007-11-13 Thread Georg Dummer

Hi Zoltan,

thank you for your code. I've already searched the list for umpteen 
times but just now I found this thread:

http://thread.gmane.org/gmane.comp.gnu.lilypond.general/18415/focus=18420

And now your code expands to:

\version 2.10.33
\paper{ ragged-right=##t }

#(define (vertline-stencil stencil thickness padding)
 Add vertical lines around STENCIL, producing a new stencil.
 (let* ((x-ext (interval-widen (ly:stencil-extent stencil 0) padding))
(y-ext (interval-widen (ly:stencil-extent stencil 1) padding))
(y-rule (make-filled-box-stencil (cons 0 thickness) y-ext))
(x-rule (make-filled-box-stencil
 (interval-widen x-ext thickness) (cons 0 thickness
   (set! stencil (ly:stencil-combine-at-edge stencil X 1 y-rule padding))
   (set! stencil (ly:stencil-combine-at-edge stencil X -1 y-rule padding))
   stencil))
#(define (make-stencil-vertline thickness padding callback)
 Return function that adds vertical lines around the grob passed as 
argument.

 (lambda (grob) (vertline-stencil (callback grob) thickness padding)))

repeatableNote = {
 \once\override NoteHead #'stencil = #(make-stencil-vertline 0.05 0.05 
ly:note-head::print)

}

\score{

 \new Voice \relative e' {
   \set Staff.instrumentName = IV  
   \cadenzaOn
   \override Stem #'transparent = ##t

   s4 e4 g \bar dashed a\breve
   \set fontSize = #-2
   s4
   \repeatableNote  \parenthesize g 
   a\breve
   \set fontSize = #+2
   g4_- a
   \once \override TextScript #'extra-offset = #'(0.7 . 0.0) 
\repeatableNote b^\markup{\fontsize #-7 /}

   \repeatableNote  \parenthesize a 
   \bar | \once \override Score.RehearsalMark #'extra-offset = #'(0.0 
. -7.0) \mark *

   a\breve g4_- a b
   \once \override TextScript #'extra-offset = #'(0.7 . 0.0) 
\repeatableNote g^\markup{\fontsize #-7 /}

   \repeatableNote e \bar ||

   \cadenzaOff
 }

 \layout{
   \context{
 \Staff
   \remove Time_signature_engraver
   \remove Clef_engraver
   }
 }
}

Zoltan Selyem schrieb:

Hi Georg,

  

I am scoring some psalms like:
http://de.wikipedia.org/wiki/Bild:Psalm0.jpg
and wonder, how to get these noteheads for repeatable notes, these
stemless quarters on the left with vertical lines on each side.



I don't know how to put vertical lines around quarters, but for the
rest you can try something like the following (until somebody can show
a better solution):

%
\version 2.11.34
\paper{ ragged-right=##t }

\score{

  \new Voice \relative e' {
\set Staff.instrumentName = IV  
\cadenzaOn
\override Stem #'transparent = ##t

s4 e4 g \bar dashed a\breve
\set fontSize = #-2
s4
 \parenthesize g 
a\breve
\set fontSize = #+2
g4_- a
\once \override TextScript #'extra-offset = #'(0.7 . 0.0) b^\markup{\fontsize #-7 
/}
 \parenthesize a 
\bar | \once \override Score.RehearsalMark #'extra-offset = #'(0.0 . -7.0) \mark 
*
a\breve g4_- a b
\once \override TextScript #'extra-offset = #'(0.7 . 0.0) g^\markup{\fontsize #-7 
/}
e \bar ||

\cadenzaOff
  }
  
  \layout{

\context{
  \Staff
\remove Time_signature_engraver
\remove Clef_engraver
}
  }
}
%


Bye,

Zoltán




  



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


forward slash between words in Lyrics

2007-03-22 Thread Georg Dummer
Hi all,

Is there a way to put a centered slash between to words (syllables) in
lyrics, which is not aligned to a note?

Example (lyrics):

...  bla   bla.  /  Bla   bla...
... blaha blaha. / Blaha blaha... 

Many Thanks,
Georg



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


File size

2007-01-18 Thread Georg Dummer
Hi all,

In the new version (2.10.12) the file size of a 1-line song in four part
harmony increases from 75KB (PS output of version 2.8.8) to 587KB. The
songbook (ca. 240 songs) I made via lilypond-book and latex jumps from 33MB
to 810MB.

Is this behaviour intended and can I reduce the file size to something
smaller and more manageable?

Thanks 
Georg



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


Again associatedVoice in 2.10.10

2007-01-08 Thread Georg Dummer
Hi all,

Again I couldn't figure out how to cope with associatedVoice.
Why is the syllable sau aligned to 'c' and not to 'a'?

Thank you 
Georg


  \relative \new Voice = lahlah {
\set Staff.autoBeaming = ##f
c4

  \new Voice = alternative {
\voiceOne
  % show associations clearly.
  \override NoteColumn #'force-hshift = #-3
  g'8 g16
  }
  {
\voiceTwo
r8 g16
\oneVoice
  } 
a8( b) c
  }
  \new Lyrics \lyricsto lahlah {
Ju -- ras -- sic Park
  }
  \new Lyrics \lyricsto lahlah {
% Tricky: need to set associatedVoice
% one syllable too soon!
\set associatedVoice = alternative % applies to ran
Ty --  ran --
\set associatedVoice = lahlah % applies to sau but too late
no --  sau -- rus Rex
  } 



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


RE: associatedVoice in 2.10.8

2007-01-06 Thread Georg Dummer
Thanks for the fast reply, but now in 2.10.9 the syllables sau and rus
are not applied to Voice lahlah.


-Original Message-
From: Georg Dummer [mailto:[EMAIL PROTECTED] 
Sent: Friday, January 05, 2007 10:52 AM
To: 'lilypond-user'
Subject: associatedVoice in 2.10.8

Hi all, 

I changed the example for the associated voices a bit (first 
part of the tuplet in the alternative voice is a rest instead 
of a note) to demonstrate my problem. In version 2.8.8 the 
syllable ran is shifted to the next note properly. Version 
2.10.8 says:

Lyric syllable does not have note. Use \lyricsto or 
associatedVoice.
ran -- 
And applies the syllable to the rest.

Is this a bug or did the behaviour of associatedVoice changed.

Regards Georg 


  \relative \new Voice = lahlah {
\set Staff.autoBeaming = ##f
c4

  \new Voice = alternative {
\voiceOne
\times 2/3 {
  % show associations clearly.
  \override NoteColumn #'force-hshift = #-3
  r8 f g
}
  }
  {
\voiceTwo
f8.[ g16]
\oneVoice
  } 
a8( b) c
  }
  \new Lyrics \lyricsto lahlah {
Ju -- ras -- sic Park
  }
  \new Lyrics \lyricsto lahlah {
% Tricky: need to set associatedVoice
% one syllable too soon!
\set associatedVoice = alternative % applies to ran
Ty --
ran --
no --
\set associatedVoice = lahlah % applies to rus
sau -- rus Rex
  } 



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


RE: associatedVoice in 2.10.8

2007-01-06 Thread Georg Dummer
Thank you for the fast answer. Now I have the problem that the syllable
sau is applied one note to late to voice lahlah.


  \relative \new Voice = lahlah {
\set Staff.autoBeaming = ##f
c4

  \new Voice = alternative {
\voiceOne \tiny
  % show associations clearly.
  \override NoteColumn #'force-hshift = #-3
  f8 f
  }
  {
\voiceTwo
r8 d
\oneVoice
  } 
d4 d8 d
  }
  \new Lyrics \lyricsto lahlah {
Ju -- ras -- sic Park
  }
  \new Lyrics \lyricsto lahlah {
\set associatedVoice = alternative % applies to ran
Ty --
ran --
\set associatedVoice = lahlah % applies to sau
no --  sau -- rus Rex
  } 

-Original Message-
From: Han-Wen Nienhuys [mailto:[EMAIL PROTECTED] 
Sent: Friday, January 05, 2007 12:30 PM
To: Georg Dummer
Cc: 'lilypond-user'
Subject: Re: associatedVoice in 2.10.8

Georg Dummer escreveu:
 Hi all,
 
 I changed the example for the associated voices a bit (first part of 
 the tuplet in the alternative voice is a rest instead of a note) to 
 demonstrate my problem. In version 2.8.8 the syllable ran 
is shifted 
 to the next note properly. Version 2.10.8 says:
 
 Lyric syllable does not have note. Use \lyricsto or 
associatedVoice.
 ran -- 
 And applies the syllable to the rest.


http://code.google.com/p/lilypond/issues/detail?id=221

-- 

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


associatedVoice in 2.10.8

2007-01-05 Thread Georg Dummer
Hi all, 

I changed the example for the associated voices a bit (first part of the
tuplet in the alternative voice is a rest instead of a note) to demonstrate
my problem. In version 2.8.8 the syllable ran is shifted to the next note
properly. Version 2.10.8 says:

Lyric syllable does not have note. Use \lyricsto or associatedVoice.
ran -- 
And applies the syllable to the rest.

Is this a bug or did the behaviour of associatedVoice changed.

Regards Georg 


  \relative \new Voice = lahlah {
\set Staff.autoBeaming = ##f
c4

  \new Voice = alternative {
\voiceOne
\times 2/3 {
  % show associations clearly.
  \override NoteColumn #'force-hshift = #-3
  r8 f g
}
  }
  {
\voiceTwo
f8.[ g16]
\oneVoice
  } 
a8( b) c
  }
  \new Lyrics \lyricsto lahlah {
Ju -- ras -- sic Park
  }
  \new Lyrics \lyricsto lahlah {
% Tricky: need to set associatedVoice
% one syllable too soon!
\set associatedVoice = alternative % applies to ran
Ty --
ran --
no --
\set associatedVoice = lahlah % applies to rus
sau -- rus Rex
  } 



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


Lilypond-mode.el and Windows

2006-09-11 Thread Georg Dummer
Hi all,

-- just a hint for others with the same problem --

To run lilypond out of Emacs (Windows) I changed all lines similar to this
one:
 (2PS . (,(concat LilyPond-lilypond-command  -f ps %s) %s %p
ViewPS))
To:
 (2PS . (,(concat LilyPond-lilypond-command  -f ps \%s\) %s %p
ViewPS))

Than all path- and filenames with spaces are handed over correctly to
lilypond.

Georg



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


Windows command line

2006-06-22 Thread Georg Dummer
Hi all,

From the latest Windows-versions of Lilypond (2.8.4 and 2.8.5) I got no
output at the command line in any case so I returned to 2.8.3.
The PS file is created properly.
Is this a new feature or a bug?

Regards Georg



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


Lyrics extender problem

2006-03-28 Thread Georg Dummer
Hi all,

I have the following problem with Lyrics extenders. In the altos voice it
is drawn properly.
But in the sopranos the externder is missed out.

Thanks for any suggestion.
Georg

\version 2.8.0

global = {
  \key c \major
  \time 4/4
}

sopMusic = \relative c'' {
  c4 c c8( b) c4
}
sopWords = \lyricmode {
  hi hi hi __ hi
}
altoMusic = \relative c' {
  e4 f d8( d) e4
}
altoWords =\lyricmode {
  ha ha ha __ ha
}
 
\score {
  \new ChoirStaff 
\new Lyrics = sopranos { s1 }
\new Staff = women 
  \new Voice =
  sopranos { \voiceOne  \global \sopMusic  }
  \new Voice =
  altos { \voiceTwo  \global \altoMusic  }

\new Lyrics = altos { s1 }

\context Lyrics = sopranos \lyricsto sopranos \sopWords
\context Lyrics = altos \lyricsto altos \altoWords
  
}



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


RE: Lilypond-book output

2006-01-24 Thread Georg Dummer
-Original Message-
From: Graham Percival [mailto:[EMAIL PROTECTED] 
Sent: Sunday, January 22, 2006 4:26 AM
To: Georg Dummer
Cc: 'lilypond-user'
Subject: Re: Lilypond-book output


On 20-Jan-06, at 3:19 AM, Georg Dummer wrote:

 Thank you. I tried this but it didn't change anything.
 But maybe I have to play around with this a bit.
 As a start I think I can live with that. For me the most annoy thing 
 is the fact, that the markups are put on top of the score. Is this a 
 bug?

All the markups?  Regardless of having \score in between them? 
 Yes, I'd say that is a bug.  Please create a small file which 
demonstrates this, and send it to the bugs list.


See
http://lists.gnu.org/archive/html/bug-lilypond/2006-01/msg00136.html

Hope, this helps
Georg



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


RE: TEX-Backend

2006-01-20 Thread Georg Dummer
Using
\paper{
...
  oddFooterMarkup=\markup {}
  evenFooterMarkup=\markup {}
} 

makes the following lines disappear: 
\lyitem{018.2363}{-169.1327}{\hbox{\magfontecrmBAmXVo{}Music engraving by
LilyPond}}% \lyitem{045.6798}{-169.1327}{\hbox{\magfontecrmBAmXVo{} }}%
\lyitem{047.2795}{-169.1327}{\hbox{\magfontecrmBAmXVo{}2.7.27}}%
\lyitem{052.9894}{-169.1327}{\hbox{\magfontecrmBAmXVo{}â  }}%
\lyitem{057.5329}{-169.1327}{\hbox{\magfontecrmBAmXVo{}www.lilypond.org}}%

I think the next to last line caused the error.

Georg 

-Original Message-
From: 
[EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED]
.org] On Behalf Of Thomas Ruedas
Sent: Wednesday, January 18, 2006 8:12 PM
To: lilypond-user@gnu.org
Subject: Re: TEX-Backend

Hi,
On Wednesday 18 January 2006 12:06, Georg Dummer wrote:
 ! Package inputenc Error: Keyboard character used is undefined
 (inputenc)in inputencoding `latin1'.
I seem to recall having seen something of that kind when 
saving LaTeX source files (unrelated to lilypond) with UTF-8 
encoding activated instead of ISO-8859-1 in my text editor 
(xemacs). This might be an issue if you have, for instance, 
german umlauts. Did you try that?
Can't say anything about the other stuff, sorry.
Thomas
-- 


___
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 output

2006-01-20 Thread Georg Dummer
 

-Original Message-
From: Graham Percival [mailto:[EMAIL PROTECTED] 
Sent: Friday, January 20, 2006 12:05 AM
To: Georg Dummer
Cc: lilypond-user
Subject: Re: Lilypond-book output


On 8-Jan-06, at 8:02 AM, Georg Dummer wrote:
 Then I get the whole score with the markup in the correct 
order but in 
 one picture which is only suitable for realy small scores. If I 
 comment out the \book block the several lines are drawn in 
serveral 
 pictures but all \markups are put in one picture. The same thing 
 happens if I use the \header instead of the first markup.

Interesting.  The \book behavior is what's supposed to happen.  Having

\score{ {
{ notes }
\markup{}
\markup{}
}
}

is a relatively new construct.  But I agree that is seems that 
the two \markup sections should be processed separately 
(producing separate .eps files).

 Is it possible to put every separate markup, header and line of a 
 score in different eps-files?

You could probably fake it by inserting an empty, invisible 
score in between the \markup fields.

- Graham

Thank you. I tried this but it didn't change anything. 
But maybe I have to play around with this a bit.
As a start I think I can live with that. For me the most annoy thing is the
fact, that the markups are put on top of the score. Is this a bug?

Georg



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


TEX-Backend

2006-01-18 Thread Georg Dummer
Hi list,

does anyone have some experience with the TEX-Backend of lilypond (2.7.27,
debian). 

I tried:
lilypond -b tex --tex test.ly

But latex test.tex fails with
...
! Package inputenc Error: Keyboard character used is undefined
(inputenc)in inputencoding `latin1'.



I also tried:
lilypond -b texstr test.ly 
GNU LilyPond 2.7.27
»test.ly« wird verarbeitet
Analysieren...
Interpretation der Musik...[5]
Vorverarbeitung der grafischen Elemente... 
Berechne Zeilenumbrüche... [3][5]
Zeilenumbrüche werden berechnet...
Layout nach »test.texstr«
ausgeben.../usr/local/share/lilypond/2.7.27/scm/output-texstr.scm:19:1: In
procedure map in expression (map (lambda # #) (ly:all-stenc
il-expressions)):
/usr/local/share/lilypond/2.7.27/scm/output-texstr.scm:19:1: Wrong type
argument in position 2: (translate-stencil () . #0#)

Test.tex is empty.
Is this a bug or did I somthing wrong.


Thanks for any hint
Georg



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


Lilypond-book output

2006-01-08 Thread Georg Dummer
Hi to all,

I'd like to repeat my question, I asked nearly one month ago but still
without an answer.

I have a minimal lytex-example test.lytex and the corresponding lilypondfile
which is the score-text.ly from the Regression tests in the
documentation.

...and processed with:
lilypond-book -f latex --psfonts --output=lilyout test.lytex 
cd lilyout 
latex test.tex 
dvips -h test.psfonts test.dvi

Then I get the whole score with the markup in the correct order but in one
picture which is only suitable for realy small scores. If I comment out the
\book block the several lines are drawn in serveral pictures but all
\markups are put in one picture. The same thing happens if I use the
\header instead of the first markup.

Is it possible to put every separate markup, header and line of a score in
different eps-files?

I also tried the Windows-Version (lilypond works fine):
C:\...\lilypond\testc:\Programme\LilyPond\usr\bin\lilypond-book.py
test.lytex
Traceback (most recent call last):
  File c:\Programme\LilyPond\usr\bin\lilypond-book.py, line 35, in ?
import tempfile
  File /usr/lib/python2.4/tempfile.py, line 33, in ?
  File /usr/lib/python2.4/random.py, line 828, in ?
  File /usr/lib/python2.4/random.py, line 95, in __init__
  File /usr/lib/python2.4/random.py, line 111, in seed
ImportError: No module named time

Do I have to do something else, except double click the executable (set some
environment variabales ...) to install Lilypond on Windows.

Many thanks and best regards
Georg

 test.lytex -
\documentclass[a4paper]{article}
\begin{document}  
\lilypondfile{test.ly}   
\end{document}

 test.ly 
\renameinput test.ly
\version 2.7.20
\book {
\markup {
...
}
\score {

  ...

}
\markup {
...
}
\markup {
 ...
}
}



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


RE: Yet another font problem

2005-08-29 Thread Georg Dummer
As I said fc-list is installed (the whole fontconfig package respectively)
and this is it's output which i'm not able to interpret:

Luxi Serif:style=Regular
Utopia:style=Bold Italic
Bitstream Vera Sans Mono:style=Bold
Luxi Serif:style=Bold
Bitstream Vera Sans:style=Oblique
Luxi Mono:style=Bold
Utopia:style=Bold
Bitstream Vera Sans:style=Roman
Bitstream Charter:style=Bold Italic
Luxi Sans:style=Bold
Courier:style=Bold Italic
Luxi Sans:style=Regular
Courier:style=Regular
Cursor:style=Regular
Bitstream Charter:style=Regular
Bitstream Vera Sans Mono:style=Oblique
Courier 10 Pitch:style=Bold Italic
Luxi Mono:style=Regular
Bitstream Charter:style=Italic
Bitstream Vera Sans:style=Bold
Courier 10 Pitch:style=Italic
Utopia:style=Italic
Bitstream Vera Serif:style=Roman
Bitstream Vera Sans Mono:style=Bold Oblique
Luxi Serif:style=Oblique
Bitstream Vera Sans:style=Bold Oblique
Luxi Serif:style=Bold Oblique
Bitstream Vera Sans Mono:style=Roman
Luxi Mono:style=Oblique
Courier 10 Pitch:style=Regular
Luxi Sans:style=Oblique
Courier:style=Italic
Courier 10 Pitch:style=Bold
Luxi Sans:style=Bold Oblique
Bitstream Vera Serif:style=Bold
Luxi Mono:style=Bold Oblique
Courier:style=Bold
Utopia:style=Regular
Bitstream Charter:style=Bold 

-Original Message-
From: Jan Nieuwenhuizen [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 29, 2005 10:43 AM
To: Georg Dummer
Cc: lilypond-user; [EMAIL PROTECTED]
Subject: Re: Yet another font problem

Georg Dummer writes:

 What's about fc-list Han-Wen mentioned? I have one in my cygwin 
 environment but not in my Lilypond Win-native.

If you have cygwin installed, you should be able to install the native
version of fc-list from the fontconfig package using min-apt:

PATH=/cygdrive/c/Program Files/LilyPond/usr/bin:$PATH
min-apt install fontconfig

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


Yet another font problem

2005-08-26 Thread Georg Dummer
Hallo 

I noticed a strange problem (version: windows 2.7.7) while trying to change
some fonts in a markup.


\override #'(font-name . binnerd ) 
works fine, but
\override #'(font-name . minion regular )
Comes out with the default(?) font.

Both are regular installed and well-working (ttf) fonts.
What's wrong with it or have I forgot something?

Georg

---
Diese Nachricht besteht aus 100% recycelten Elektronen! 



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


Two markup problems

2005-08-22 Thread Georg Dummer
I have two problems with markup commands:

First:
\markup{ \caps Bla } (working in version 2.4.6)
does not produce capitalised letters in version 2.6.0
 
Second:
\markup{ \char #65 } (also in versions 2.6.0).
gives the following error:
Layout output to `MeineEngenGrenzen.ps'...ERROR: In procedure string-length:
ERROR: Wrong type argument in position 1 (expecting string): #f


Any idea?
Tanks
Georg



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


RE: lilypond-book and DIN A4 ?!?

2005-08-03 Thread Georg Dummer
According to the hint of Mats (possible extra space after the last bar) I
changed my workaround:

\usepackage{ifthen}
\newcommand{\preLilyPondExample}{\raggedleft}
\newcommand{\betweenLilyPondSystem}[1]{%
\ifthenelse{\equal{#1}{2}}%
{\\[0.5cm] \raggedright}%
{\\[0.5cm]}%
 }%
\newcommand{\postLilyPondExample}{\\ \vspace{0.5cm}}

Now only the first two pictures (header and first sytem) are right aligned.
The rest remains left aligned.
To work properly the linewidth should not be set in the song.

Georg


-Original Message-
From: Martin Brodbeck [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 02, 2005 1:38 PM
To: Georg Dummer
Cc: lilypond-user
Subject: Re: lilypond-book and DIN A4 ?!?

Georg Dummer schrieb:

Hi Georg,

 Here is an example that demonstrates the problem. Commenting out the 
 linewidth in the *.ly-file only places the last systems the right way.

Yes, this is exactly true. Just to make it clear: I've no linewidth or
something in my .ly file but the resuling output is as I said and like in
your example.

Martin



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


RE: lilypond-book and DIN A4 ?!?

2005-08-03 Thread Georg Dummer
Your are right. This was never intended to be a general solution. I only
realised that some others have the same problems with lilypond-book and
maybe they can benefit from this.  Of course anyone as to adapt this hack to
his needs.
But without this workaround lilypond-book (2.6.1) is rather useless for me
and I have to downgrade to 2.4.6 .

Georg

-Original Message-
From: Mats Bengtsson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 03, 2005 9:19 AM
To: Georg Dummer
Cc: lilypond-user
Subject: Re: lilypond-book and DIN A4 ?!?

Sorry to be picky, but I can't see that this solution would be generally
useful. As can be seen in a related discussion in bug-lilypond, I think we
are beginning to realize what the actual problems are and how they can be
solved in lilypond-book.

/Mats

Georg Dummer wrote:
 According to the hint of Mats (possible extra space after the last 
 bar) I changed my workaround:
 
 \usepackage{ifthen}
 \newcommand{\preLilyPondExample}{\raggedleft}
 \newcommand{\betweenLilyPondSystem}[1]{%
   \ifthenelse{\equal{#1}{2}}%
   {\\[0.5cm] \raggedright}%
   {\\[0.5cm]}%
}%
 \newcommand{\postLilyPondExample}{\\ \vspace{0.5cm}}
 
 Now only the first two pictures (header and first sytem) are right
aligned.
 The rest remains left aligned.
 To work properly the linewidth should not be set in the song.
 
 Georg
 
 
 -Original Message-
 From: Martin Brodbeck [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, August 02, 2005 1:38 PM
 To: Georg Dummer
 Cc: lilypond-user
 Subject: Re: lilypond-book and DIN A4 ?!?
 
 Georg Dummer schrieb:
 
 Hi Georg,
 
 
Here is an example that demonstrates the problem. Commenting out the 
linewidth in the *.ly-file only places the last systems the right way.
 
 
 Yes, this is exactly true. Just to make it clear: I've no linewidth or 
 something in my .ly file but the resuling output is as I said and like 
 in your example.
 
 Martin
 
 
 
 ___
 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: lilypond-book and DIN A4 ?!?

2005-08-02 Thread Georg Dummer
Here is an example that demonstrates the problem. Commenting out the
linewidth in the *.ly-file only places the last systems the right way.
Because this problem was already discussed here I abstained from sending the
code.
But maybe there is a better solution.

Georg

-Original Message-
From: Mats Bengtsson [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 01, 2005 4:18 PM
To: Georg Dummer
Cc: lilypond-user
Subject: Re: lilypond-book and DIN A4 ?!?

As far as I can see, the \begin{flushright} doesn't solve anything as long
as you let lilypond-book determine the line width of the scores, since they
will be rather too long then too short (see my email to bug-lilypond a few
minutes ago).
However, if you explicitly set the line width of the music examples to be
shorter than the line width of the remaining LaTeX document, then it makes
sense to use something like what you propose to work around these bugs.

Since you haven't provided any complete example including both LaTeX and
LilyPond code, it's a bit hard to realize exactly what problems you try to
solve.

/Mats

Georg Dummer wrote:
 This is my newest achievement:
 
 \newcommand{\preLilyPondExample}{\begin{flushright}}
 \newcommand{\betweenLilyPondSystem}[1]{\hfill} % maybe not needed 
 \newcommand{\postLilyPondExample}{\end{flushright}}
 
 This also gives acceptable results if you have set the instrument 
 name. In this case the first system (eps-picture) normaly has a 
 different width than the onthers.
 
 Georg
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] 
 On Behalf Of Mats Bengtsson
 Sent: Monday, August 01, 2005 10:01 AM
 To: Martin Brodbeck
 Cc: lilypond-user@gnu.org
 Subject: Re: lilypond-book and DIN A4 ?!?
 
 As has been stated before: As long as you don't specify the line width 
 (or paper size) within the actual .ly code, there should be no need to 
 use this workaround.
 
 /Mats
 
 Martin Brodbeck wrote:
 
Graham Percival schrieb:


Known issue; please search the lilypond-user and bug-lilypond mailist 
archives for discussion and workarounds.
(it was probably discussed on lilypond-devel as well)


After a third watch at lilypond-user I found a workaround:
\newcommand{\betweenLilyPondSystem}[1]{\linebreak} in the preamble 
of the LaTeX document fixes the issue.

Thanks,
Martin


___
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
 
 
 
 ___
 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
=


test.lytex
Description: Binary data
\header {
  poet = Text: Eugen Eckert 
  composer = Musik: Winfried Heurich
  copyright = © wer auch immmer
  enteredby = Georg Dummer
}

\layout {
   linewidth = 170 \mm
indent = 15 \mm
}
\renameinput Messe/MeineEngenGrenzen.ly
\version 2.6.0
\include ../templates/defaults.ly

StimmeSop =   \relative c' { 
	\key f \major
  	\time 4/4
  	
  	
  	a'4 a a f |
  	e2 d |
  	b'4\rest d,8 d e4 \break \bar f8 f ~  | 
  	f4 f8 f g4 a8 a ~ |
 	a2 b\rest \bar|: \break
  	d4 d d c a2 g  |
  	f4 g e e |
	d2 b'\rest \bar:|
}

StimmeAlt =   \relative c' { 
	f4 f e d |
	d \melisma cis \melismaEnd d2 |
	s4 d8 d d4 d8 c ~ |
	c4 c8 c e4 e8 f8 ~ |
	f2 s |
	a4 a gis gis | 
	a2 d, |
  	d4 d d c |
  	a2 s |
}

StimmeTen =  \relative c' { 
	\key f \major
  	\time 4/4
  	
  	d4 d c bes |
  	bes2 a |
  	d,4\rest bes'8 bes 
  	bes4 bes8 a ~ |
  	a4 a8 a c4 c8 c ~ |
  	c2 d,\rest
  	d'4 a d e c2 b |
	bes4 bes g g |
	f2 d\rest \bar:|
}

StimmeBass =   \relative c' { 
	a4 a a a |
	g2 f |
	s4 f8 f f4 f8 f ~ |
	f4 e8 d8 c4 c8 f8 ~ |
	f2 s |
	f4 f e e |
	f2 f |
	f4 bes c, c |
	d2 s |
}

Text =\lyricmode {
	\set stanza = 1. 
	Mei -- ne en -- gen Gren -- zen, mei -- ne kur -- ze Sicht, __
	brin -- ge ich vor dich. __
	Wand -- le sie in Wei -- te.
	Herr, er -- bar -- me dich.
}

Akkorde = \chordmode { 
	d2:m a4:m b:7

RE: lilypond-book and DIN A4 ?!?

2005-08-01 Thread Georg Dummer
This is my newest achievement:

\newcommand{\preLilyPondExample}{\begin{flushright}}
\newcommand{\betweenLilyPondSystem}[1]{\hfill} % maybe not needed   
\newcommand{\postLilyPondExample}{\end{flushright}} 

This also gives acceptable results if you have set the instrument name. In
this case the first system (eps-picture) normaly has a different width than
the onthers.

Georg

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On
Behalf Of Mats Bengtsson
Sent: Monday, August 01, 2005 10:01 AM
To: Martin Brodbeck
Cc: lilypond-user@gnu.org
Subject: Re: lilypond-book and DIN A4 ?!?

As has been stated before: As long as you don't specify the line width (or
paper size) within the actual .ly code, there should be no need to use this
workaround.

/Mats

Martin Brodbeck wrote:
 Graham Percival schrieb:
 
 Known issue; please search the lilypond-user and bug-lilypond mailist 
 archives for discussion and workarounds.
 (it was probably discussed on lilypond-devel as well)
 
 
 After a third watch at lilypond-user I found a workaround:
 \newcommand{\betweenLilyPondSystem}[1]{\linebreak} in the preamble 
 of the LaTeX document fixes the issue.
 
 Thanks,
 Martin
 
 
 ___
 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



___
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: Cygwin install of 2.6?

2005-07-11 Thread Georg Dummer
Specifying the whole path solved this problem:

$ lilypond -V /cygdrive/z/temp/2.6/test/test.ly GNU LilyPond 2.6.0


But then 'PFAPFAemmentaler-26.pfa.pfa' is not found (the file
'PFAemmentaler-26.pfa' exists)???

Georg

error: can't find file:
`/usr/share/lilypond/2.6.0/fonts/type1//PFAPFAemmentaler
-26.pfa.pfa' (load path:
`/usr/share/lilypond/2.6.0/fonts/cff/:/usr/share/lilypo
nd/2.6.0/fonts/svg/:/usr/share/lilypond/2.6.0/fonts/cff/:/usr/share/lilypond
/2.6
.0/fonts/type1/:/usr/share/lilypond/2.6.0/fonts/otf/:/usr/share/lilypond/2.6
.0/s
cm:/usr/share/lilypond/2.6.0/ps:/usr/share/lilypond/2.6.0/ly::/cygdrive/z/te
mp/2
.5/test') 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On
Behalf Of Rob Vlasaty
Sent: Monday, July 11, 2005 4:20 PM
To: lilypond-user@gnu.org
Subject: Re: Cygwin install of 2.6?

I installed 2.6.0 for Cygwin on my Windows XP this morning.nbsp; Lilypond
says that it can not find my files when I try to run it.nbsp; I also tried
running my files through Lilypond-book and got the following errors:

File /usr/bin/lilypond-book, line 1616, in ?
main ()
File /usr/bin/lilypond-book, line 1582, in main chunks = do_file (file)
File /usr/bin/lilypond-book, line 1448, in do_file set_default_options
(source) File /usr/bin/lilypond-book, line 660, in set_default_options
textwidth = get_latex_textwidth (source) File /usr/bin/lilypond-book, line
1280, in get_latex_textwidth tempfile.tempdir = ''
NameError: global name 'tempfile' is not defined


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



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


Another lilypond-book problem

2005-06-07 Thread Georg Dummer
Hi all,

I think I have the same problem as described by Laura Conrad (28 May; 3
June) on the lilypond.devel-list.
Up to now no one answered this question. So I want to post it to this list:

In my *.lytex file I played around with:
\lilypondfile[quote,noindent,linewidth=170\mm]{Messe/GottMeinGott.ly}
Or
\lilypondfile{Messe/GottMeinGott.ly} ...

But always with the same effect:
The first two systems of a score are placed side by side instead of among
each other. The second systems, needless to say, runs out of the page.
The rest of each piece is ok.

\version 2.5.27
Self-compiled on debian 2.4.27

Any idea?
And many thanks in advance
Georg Dummer



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


Repeat sign in LaTEX

2005-03-10 Thread Georg Dummer
Hi all,

How can I create the repeat signs in LaTEX.
I need this (in the lyrics written in LaTEX) because I can't put all the
stanzas below the notes. 
Since I found no special repeat-character in the feta-fonts I guess ist
created using tex.

Can anyone help.

Thanks Georg



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


RE: Elision in lyrics

2005-02-09 Thread Georg Dummer
Hi,

A friend of mine wrote this script for me and I successfully use it in
MusixTEX:
http://www.tug.org/tex-archive/macros/musixtex/taupin/add-ons/underbracket/

Sadly I do not know how to use it in Lilypond.
If you find this out I'm really interested in your solution.

Georg

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On
Behalf Of Mats Bengtsson
Sent: Wednesday, February 09, 2005 4:40 PM
To: Laura Conrad
Cc: lilypond-user@gnu.org
Subject: Re: Elision in lyrics

This request keeps poping up about once a year or so. If I recall correctly,
the earlier requests were for a curved symbol, something like a tie pointing
downwards, whereas your example shows a straight line. I think you can find
some workarounds in the mailing list archives using inline LaTeX code. For
an ordinary underscore as in the example you show, you could simply use
tre\\_es.
If there happens to be any symbol in the LilyPond Feta font that could be
useful (see
http://lilypond.org/doc/v2.4/Documentation/user/out-www/lilypond/The-Feta-fo
nt.html#The-Feta-font)
then it's easy to access in the lyrics by just inserting a \markup{...}
command.

/Mats

Laura Conrad wrote:
 There's a typesetting convention for lyrics that when there are what 
 look like two syllables on a note but it's really only one because one 
 is elided, you join the syllables with a sort of a tie underneath 
 them.  You can see how Encore does this on the bottom score of the 
 first page of this file.
 
 http://www.cpdl.org/modules.php?op=modloadname=Downloadsfile=index;
 req=getitlid=2595
 
 Is there a way to make Lilypond do this?  
 
 If so, can it be documented and indexed under elision, or Lyrics,
elision?
 
 One of my group members believes strongly that this is the *right 
 thing to do*, so I might do it if it were easy, but they never did 
 stuff like that in the 16th century, so I might just not bother 
 anyway.


--
=
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



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


Rest in Lyrics

2005-01-10 Thread Georg Dummer
Hi all,

I am new on the list and hope this question was not answered before:
I have a song with multiple stanzas. In one of them I want to skip a note which 
is normally done by saying “ _ ” in the lyrics. For better understanding I want 
to put an accordant rest symbol at this place in the text (in my case it is 
quarter rest). 
Thank you for any hint. (my version: \version 2.4.2)

Regards 
Georg





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