Re: How to use ^markup in a scheme function?

2006-12-17 Thread Erik Sandberg
On Saturday 16 December 2006 23:40, Frédéric Chiasson wrote:
> Thanks for the later answer, that is what i'm using and it works.
>
> For the Lilypond code with the Scheme code, I just want to execute the
> Lilypond code, so I should write :
>
> (define-music-function (variables)
> (let ((music #{ LilyPond code #}))
>   ( (make-music music)
>  other Scheme code )))
> ?
no:
- music is already a music object, so no need for make-music.
- let returns the value of the last expression, read any scheme manual for 
details.
So if you want to do side-effects, you'll want do do something like:
(define-music-function (variables)
 (let ((music #{ LilyPond code #}))
  (other Scheme code) 
  music))


-- 
Erik


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


programming error: minimise_least_squares (): Nothing to minimise

2006-12-17 Thread Mehmet Okonsar
what's that:

programming error: minimise_least_squares ():  Nothing to minimise
continuing, cross fingers

-- 
Mehmet Okonsar,
pianist-composer-conductor
www.okonsar.com


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


Re: Tutorial

2006-12-17 Thread Manuel
It seems to be working now. Gilles suggestion (thanks, Gilles) worked  
fine but I couldn't substitute "title" and "composer" for "piece" and  
"opus". Eventually I wrote it thus:


\version "2.10.0"
\paper{
printallheaders=##t
bottom-margin = 1\cm
first-page-number = 2
}
\layout{
\context{
   \Score
\override BarNumber #'padding = #3
}
}
\score{
\new ChoirStaff
\relative
<<
\new Staff
{ \clef treble d'8 e f g a4. g8 a bes a4 f d d a' g4. f8 g a g4 e c  
\break d e f2 f4 f f g8 a g f e d e4. d8 e f e4 e2 \break d8 e f g  
a4. g8 a bes a4 f d d a' g4. f8 g a g4 e c \break d e f g8 a g f e d  
c d e d c b d c d4. c8 d e d4 d2 \bar ":|:" \break r4 d e4. d8 e f e4  
f e8 d c d e f g4. f8 g a g4 g2 \break e8 f g a g4 f e d c8 d e d c b  
c4 d4. c8 d e d4 d2 \bar ":|"

}
\new Staff
\relative
{ \clef bass d,4 d d2 d4 a d d d f c4. d8 c f, g4 a a d c f,2 f4 f f  
c' c4. d8 c4 a c c c2 d4 d d2 d4 a d d d f c4. d8 c f, g4 a a d c8 e  
d4 g, g2 a4. bes8 a g a4 bes4. a8 f4 g d'2 r4 d c4. b8 c d c4 f, c' f  
e8 d c4. d8 e f g4 c,2 c4. a8 b c d4 a bes a g a2 d4 g, d'2 g,

}
>>
\header {
title = "Bergerette "
subtitle = "(Basse danse)"
composer = "Tilman Susato"
arranger = "(1510-1570) "
}
}
\score{
\new ChoirStaff
\relative
<<
\new Staff
{ \clef treble e'4 e8 d c b c d e f g f e4 d e4 e8 d c b c d \break e  
f g4 d2 \bar ":|:" e8 f g a g f e d e4 c c f f e d2 \bar ":|:" \break  
e8 f g4 e8 f g4 e8 f g4 f e a a8 g f4 e \break a a8 g f4 e e8 f g e f  
e d c b a c b c4 g'8 f \break e4 d8 c d4 g8 f e4 d c g'8 f e4 d8 c d4  
g8 f e4 d c2 \bar ":|:"

}
\new Staff
\relative
{ \clef bass c,4 c8 d a4. f8 c'4 c c g c c8 d a4. f8 c'4 g g2 c4 c8  
f, c'4. d8 c4 a a f f c' g2 c8d e4 a, e' a, e' d c f, f8 g a b c4 f,  
f8 g a b c4 c c f, f g g c e8 d c4 b8 a g4 g c g c e8 d c4 b8 a g4 g  
c g c2

}
>>
\header{
title = " Branle Quatre branles "
composer = " "
arranger = " "
}
}


I cannot find, however, how to write part of the title between double  
quotes, like this:


Branle "Quatre branles"

Where do I find this in the tutorial?

Nice sunday to you all,

Manuel


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


Re: programming error: minimise_least_squares (): Nothing to minimise

2006-12-17 Thread Graham Percival

Mehmet Okonsar wrote:

what's that:

programming error: minimise_least_squares ():  Nothing to minimise
continuing, cross fingers



It's an error message.  If it occurs with the latest lily, please 
construct a minimal example and send it to the bugs list.


Cheers,
- Graham


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


Re: Tutorial

2006-12-17 Thread Gilles Sadowski
Hi.

> It seems to be working now. Gilles suggestion (thanks, Gilles) worked  
> fine but I couldn't substitute "title" and "composer" for "piece" and  
> "opus". Eventually I wrote it thus:
>

In a \score block, you can use only "piece" and "opus".
["title" and "composer" must be set outside of all \score blocks.]
 
> 
> I cannot find, however, how to write part of the title between double  
> quotes, like this:
> 
> Branle "Quatre branles"
> 

You can "escape" the quotes with a backslash:

\score {
  { c' d' e' f' }
  \header {
piece = "Branle \"Quatre Branles\""
opus = "Susato"
  }
}


Best,
Gilles


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


Help with lyric contexts

2006-12-17 Thread Andrew Black - lists

I am probably doing something really silly, but this is driving me nuts

\version "2.8.6"
\score
{
 \new Voice = "cantor"{ a c b }
 \new Lyrics \lyricsto "cantor" { please work }

}

../exper/vocal_word.ly:5:5: error: syntax error, unexpected "\\new"

 \new Lyrics \lyricsto "cantor" { please work }


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


Re: Help with lyric contexts

2006-12-17 Thread Tomas Valusek

Hello,

you omitted << ... >> construct, since lyrics and voice have to be 
simultaneous.


\score
{
   <<
\new Voice = "cantor"{ a c b }
\new Lyrics \lyricsto "cantor" { please work }
   >>
}

See section 7.3.4: Lyrics context for more information.

Tomas Valusek

Andrew Black - lists napsal(a):

I am probably doing something really silly, but this is driving me nuts

\version "2.8.6"
\score
{
 \new Voice = "cantor"{ a c b }
 \new Lyrics \lyricsto "cantor" { please work }

}

../exper/vocal_word.ly:5:5: error: syntax error, unexpected "\\new"

 \new Lyrics \lyricsto "cantor" { please work }


___
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: Tutorial

2006-12-17 Thread Mats Bengtsson

Quoting Gilles Sadowski <[EMAIL PROTECTED]>:


Hi.


It seems to be working now. Gilles suggestion (thanks, Gilles) worked
fine but I couldn't substitute "title" and "composer" for "piece" and
"opus". Eventually I wrote it thus:



In a \score block, you can use only "piece" and "opus".
["title" and "composer" must be set outside of all \score blocks.]



See also the end of the section on "Creating titles" to learn how to 
change the default, so that all titling fields are typeset for each 
score.




I cannot find, however, how to write part of the title between double
quotes, like this:

Branle "Quatre branles"



You can "escape" the quotes with a backslash:

\score {
 { c' d' e' f' }
 \header {
   piece = "Branle \"Quatre Branles\""
   opus = "Susato"
 }
}



This is described in the section on "Entering Lyrics", which also 
points out that this often isn't the best solution.


  /Mats



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


Re: tie different chord

2006-12-17 Thread Mats Bengtsson

Please give an example of what you want to do. Clearly, you can only
tie a note head to another note head of the same pitch. By default, 
LilyPond will add a tie for each matching note of a chord, but it's 
also possible to specify ties separately for each note in the chord, 
see the section on "Ties" for more information

and examples.

  /Mats

Quoting Ezequiel Sierra <[EMAIL PROTECTED]>:


how can i tie 2 chords with different notes head?


___
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: Lyrics in poly

2006-12-17 Thread Mats Bengtsson
I't much easier for us to realize exactly what you problem is (and for 
you to write the question) if you include a small example that 
illustrates the problem.


The macros \voiceOne, \voiceTwo and \oneVoice themselves shouldn't
really have anything to do with the problem. My guess is that you have 
used the <<{...} \\ {...}>> feature, which creates new Voice

contexts during the polyphony. See "Explicitly instantiating voices"
for an explanation of exactly what is going on. See also the section on 
"Divisi lyrics" for an example of keeping lyrics together with a voice 
across a polyphonic section.



  /Mats

Quoting Ezequiel Sierra <[EMAIL PROTECTED]>:

i have voiceOne and voice Two in a staff to make poly so i make them  
oneVoice but when im adding lyrics the lyrics only goes to voiceOne  
how can i fix that?



___
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: No lyrics to polyphony

2006-12-17 Thread Mats Bengtsson

See http://lists.gnu.org/archive/html/lilypond-user/2006-01/msg00409.html
(The example in the manual has been moved to the section on "Divisi lyrics").

  /Mats

Quoting Ezequiel Sierra <[EMAIL PROTECTED]>:


i have something like

\version "2.10.2"
tope = \relative c'  {

\key ees \major
\time 4/4

\new Voice = melodia {
<< { \stemUp bes'2 4  } \\ { \stemDown d ( f ) } >>
}
}
versoUno = \lyricmode {
\set stanza = "1. "
¡San4 -- to!4 ¡San4 -- to!4

}


\score {
<<

\context ChoirStaff <<
\new Staff = tope { \tope }
\new Lyrics \lyricsto "melodia" \versoUno
>>

>>

}

No lyrics added





___
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


beamlet length in grace

2006-12-17 Thread Bertalan Fodor

Hi, I have an aftergrace: \aftergrace c8 { d16 e8 }
The beamlet for the d16 is too long, and I can't find a way to make it 
shorter.


Could anyone help?

Thanks,

Bert


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


Re: midi2ly error

2006-12-17 Thread Quentin Spencer

Jan Nieuwenhuizen wrote:

Johan Vromans <[EMAIL PROTECTED]> writes:

  

It's also in Fedora Core 5.



  

Klaas, if you need a wordk-around just email me.



Workaround?  Why isn't this fixed in Fedora?
[Where is LilyPond's bug page with Fedora, I cannot find the word Bug
on http://fedora.redhat.com or any of its subpages I tried and,
http://bugs.fedora.redhat.com does not exist either?]
  


This problem only exists in the 2.8.x packages included in FC5. In FC6, 
the 2.10.x packages don't have this problem. A bug has already been 
filed (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=219254). I 
figured I would fix it by upgrading to 2.10.2, but the build on PPC 
failed with the following (after I had already closed the bug):


adding font directory: 
/builddir/build/BUILD/lilypond-2.10.2/out/bin/../share/lilypond/2.10.2/fonts/type1/Building
 font database.

*** buffer overflow detected ***: 
/builddir/build/BUILD/lilypond-2.10.2/out/bin/lilypond terminated

Any ideas?

If I need to go back to 2.8.x, are the changes listed in the bug report 
adequate?


Quentin



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


Re: midi2ly error

2006-12-17 Thread Han-Wen Nienhuys
Quentin Spencer escreveu:
> Jan Nieuwenhuizen wrote:
>> Johan Vromans <[EMAIL PROTECTED]> writes:
>>
>>  
>>> It's also in Fedora Core 5.
>>> 
>>
>>  
>>> Klaas, if you need a wordk-around just email me.
>>> 
>>
>> Workaround?  Why isn't this fixed in Fedora?
>>
>> [Where is LilyPond's bug page with Fedora, I cannot find the word Bug
>> on http://fedora.redhat.com or any of its subpages I tried and,
>> http://bugs.fedora.redhat.com does not exist either?]
>>
>>   
> 
> This problem only exists in the 2.8.x packages included in FC5. In FC6,
> the 2.10.x packages don't have this problem. A bug has already been
> filed (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=219254). I
> figured I would fix it by upgrading to 2.10.2, but the build on PPC
> failed with the following (after I had already closed the bug):
> 
> adding font directory:
> /builddir/build/BUILD/lilypond-2.10.2/out/bin/../share/lilypond/2.10.2/fonts/type1/Building
> font database.
> 
> *** buffer overflow detected ***:

Hi,

can you run the crashing command in GDB and send a stacktrace of the error?

Furthermore, I've put up an experimental Linux/PPC build at 

  http://lilypond.org/download/binaries/linux-ppc/lilypond-2.11.2-3.linux-ppc.sh

can you check if that works for you?


-- 

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


marche unitonale

2006-12-17 Thread yota moteuchi

How do I do with lilypond what it's called in french : "marche
unitonale" (that I can not translate in english)

Which is the translation of a pattern, a chord, keeping the degrees as
well as the key
ex :

\key c \major


become

\key c \major



french readers would enjoy this wonderful example :
http://fr.wikipedia.org/wiki/Marche_harmonique


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


Re: midi2ly error

2006-12-17 Thread Quentin Spencer

Han-Wen Nienhuys wrote:

Quentin Spencer escreveu:
  

Jan Nieuwenhuizen wrote:


Johan Vromans <[EMAIL PROTECTED]> writes:

 
  

It's also in Fedora Core 5.


 
  

Klaas, if you need a wordk-around just email me.



Workaround?  Why isn't this fixed in Fedora?

[Where is LilyPond's bug page with Fedora, I cannot find the word Bug
on http://fedora.redhat.com or any of its subpages I tried and,
http://bugs.fedora.redhat.com does not exist either?]

  
  

This problem only exists in the 2.8.x packages included in FC5. In FC6,
the 2.10.x packages don't have this problem. A bug has already been
filed (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=219254). I
figured I would fix it by upgrading to 2.10.2, but the build on PPC
failed with the following (after I had already closed the bug):

adding font directory:
/builddir/build/BUILD/lilypond-2.10.2/out/bin/../share/lilypond/2.10.2/fonts/type1/Building
font database.

*** buffer overflow detected ***:



Hi,

can you run the crashing command in GDB and send a stacktrace of the error?

Furthermore, I've put up an experimental Linux/PPC build at 


  http://lilypond.org/download/binaries/linux-ppc/lilypond-2.11.2-3.linux-ppc.sh

can you check if that works for you?
  


Unfortunately, I don't have direct access to any PPC hardware, including 
those used by the Fedora build system (I can only submit batch jobs to a 
queue). So, I'm not sure I can do much more unless someone else has a 
PPC with FC5 (it appears that this doesn't happen with FC6).


Quentin



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


Re: midi2ly error

2006-12-17 Thread Quentin Spencer

Quentin Spencer wrote:

Han-Wen Nienhuys wrote:

Quentin Spencer escreveu:
 

Jan Nieuwenhuizen wrote:
   

Johan Vromans <[EMAIL PROTECTED]> writes:

 
 

It's also in Fedora Core 5.

 
 

Klaas, if you need a wordk-around just email me.


Workaround?  Why isn't this fixed in Fedora?

[Where is LilyPond's bug page with Fedora, I cannot find the word Bug
on http://fedora.redhat.com or any of its subpages I tried and,
http://bugs.fedora.redhat.com does not exist either?]



This problem only exists in the 2.8.x packages included in FC5. In FC6,
the 2.10.x packages don't have this problem. A bug has already been
filed (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=219254). I
figured I would fix it by upgrading to 2.10.2, but the build on PPC
failed with the following (after I had already closed the bug):

adding font directory:
/builddir/build/BUILD/lilypond-2.10.2/out/bin/../share/lilypond/2.10.2/fonts/type1/Building 


font database.

*** buffer overflow detected ***:



Hi,

can you run the crashing command in GDB and send a stacktrace of the 
error?


Furthermore, I've put up an experimental Linux/PPC build at
  
http://lilypond.org/download/binaries/linux-ppc/lilypond-2.11.2-3.linux-ppc.sh 



can you check if that works for you?
  


Unfortunately, I don't have direct access to any PPC hardware, 
including those used by the Fedora build system (I can only submit 
batch jobs to a queue). So, I'm not sure I can do much more unless 
someone else has a PPC with FC5 (it appears that this doesn't happen 
with FC6).


Actually, I now realize there is a stack trace of the error in the build 
log, which can be found at:

http://buildsys.fedoraproject.org/logs/fedora-5-extras/23882-lilypond-2.10.2-2.fc5/ppc/build.log

I hope this is helpful.

Quentin



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


Re: Constructive Criticism and a Question

2006-12-17 Thread Graham Percival

Jonathan Henkelman wrote:
In terms of making it easier, I don't know if it would be straight forward or 
not, but if the PDF version of the manual had chapter numbers in the table on 
contents that showed on the bookmark pane (to the left) it would make it much 
easier to bounce around and find one's way back again.


I'm sure that this can be done by adding a few words to some part of the 
doc and/or makefiles; the problem is simply finding the right place and 
figuring out the words.  I'll look into this.


Is there a copy of the so called "programmers documentation" in a suitable 
format to download i.e. PDF (I know it would be long) or a few large HTML 
files, or an archive (tarball - whatever) of the current HTML documentation.  
I was hoping to do a bit more work on this over the break, but will have very 
limited web access... 


There _is_ a documentation tarball, but I'm not certain if it includes 
the program reference.



Some type of doc. that oulined the 
lexical construction of Lilypond would be helpful.  I am not used to the level 
on confusion I am experiencing now, when learning a "language".


As with all open-source projects, documentation depends on interested 
people writing material.  I don't have the time to pursue such a 
project, but if you (or somebody else) wrote this material, I'd be more 
than happy to add it to the manual.



 I am not even 
sure the manual is totally consistent on this point, e.g. (pg 209) [I have 
reformated it so it easier to read here]:

...

\applyOutput #'context #function % apply to Voice

To have it interpreted at the Score or Staff level use these forms
\context \applyOutput #'Score #function
\context \applyOutput #'Staff #function


Thanks, this has been fixed in the source archive.  When the next 
version of lilypond comes out, it should be fixed on the web.



Finally, is the web interface for posting to this archive the most straight 
forward method?  I tried posting this yesterday, but it got lost in the 
ether.  Is there perhaps an email address I can send the post to, where it 
will get sent back for validation etc.


I believe the email address is at the bottom of every message on the 
list: lilypond-user@gnu.org


Cheers,
- Graham



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


Re: marche unitonale

2006-12-17 Thread David Bobroff
yota moteuchi wrote:
> How do I do with lilypond what it's called in french : "marche
> unitonale" (that I can not translate in english)
>
> Which is the translation of a pattern, a chord, keeping the degrees as
> well as the key
> ex :
>
> \key c \major
> 
>
> become
>
> \key c \major
> 
>
>
> french readers would enjoy this wonderful example :
> http://fr.wikipedia.org/wiki/Marche_harmonique
>
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> http://lists.gnu.org/mailman/listinfo/lilypond-user
>

If I correctly understand your example the English term you mean is
"sequence." That is, a pattern which repeats in a different part of the
scale.  As far as I know this is not possible with LilyPond.  There is a
\transpose function but this is not what you want, I think.

-David


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


Re: Help with lyric contexts

2006-12-17 Thread Ezequiel Sierra

this dosent work

\version "2.10.2"
tope = \relative c'  {

\key ees \major
\time 4/4

\new Voice = "melodia" {
<< { \stemUp bes'2 4  } \\ { \stemDown d ( f ) } >>
}

}


versoUno = \lyricmode {
\set stanza = "1. "
¡San4 -- to!4 ¡San4 -- to!4

}


\score {
<<

\context ChoirStaff <<
\new Staff = tope { \tope }
\new Lyrics \lyricsto "melodia" \versoUno
>>

>>

}






On Dec 17, 2006, at 11:18 AM, Tomas Valusek wrote:


Hello,

you omitted << ... >> construct, since lyrics and voice have to be  
simultaneous.


\score
{
   <<
\new Voice = "cantor"{ a c b }
\new Lyrics \lyricsto "cantor" { please work }
   >>
}

See section 7.3.4: Lyrics context for more information.

Tomas Valusek

Andrew Black - lists napsal(a):
I am probably doing something really silly, but this is driving me  
nuts


\version "2.8.6"
\score
{
 \new Voice = "cantor"{ a c b }
 \new Lyrics \lyricsto "cantor" { please work }

}

../exper/vocal_word.ly:5:5: error: syntax error, unexpected "\\new"

 \new Lyrics \lyricsto "cantor" { please work }


___
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






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


Re: Lyrics in poly

2006-12-17 Thread Ezequiel Sierra

here is the file

%**
\version "2.10.2"
%**

numeroHimno = "1"
tituloHimno = "¡Santo! ¡Santo! ¡Santo!"


%
\paper {
oddHeaderMarkup = \markup {  \bold \large  \numeroHimno } 
print-page-number = ##f
between-system-space = 0.0\cm
head-separation = 0.0\cm
}
%



%
\header {
title = \tituloHimno
copyright = "Iglesia Bautista de Jesucristo"
tagline = ""
meter = \markup { "(CAPO I)" }
}
%



%
acordes= \chordmode { 

ees2 c2:m bes2:7 ees2 aes4 d4:dim7/+bes aes4 bes4:9 ees1
bes2/+d ees4 g4:m/+d c4:m f4:/+c bes4 ees4 bes2/+f f4:7 bes4 bes1
ees2 c2:m bes2:7 ees2 aes4 d4:dim7/+bes aes4 bes4:9 ees1
c4:m aes4 ees4 ees4:7 aes2 ees4 ees4:7 aes4 f4:m/+aes bes4:7 ees ees1
}
%
#(define (parenthesis-ignatzek-chord-names in-pitches bass inversion context)
  (markup #:line ("(" (ignatzek-chord-names in-pitches bass inversion context) ")")))


%
acordesConCapo= << \chordmode {

\set chordNameFunction = #parenthesis-ignatzek-chord-names

\transpose ees d {
ees2 c2:m bes2:7 ees2 aes4 d4:dim7/+bes aes4 bes4:9 ees1
bes2/+d ees4 g4:m/+d c4:m f4:/+c bes4 ees4 bes2/+f f4:7 bes4 bes1
ees2 c2:m bes2:7 ees2 aes4 d4:dim7/+bes aes4 bes4:9 ees1
c4:m aes4 ees4 ees4:7 aes2 ees4 ees4:7 aes4 f4:m/+aes bes4:7 ees4 ees1
}

}
>>
%



%
tope = \relative c'  {

\key ees \major
\time 4/4

<<
\new Voice = "melodia" {

4   
<< \context Voice = "melodia" { \stemUp bes'2 4  } \\ { d ( f ) } >> 
   
2 2 \break
<< \context Voice = "melodia" { \stemUp \slurUp bes'4. bes8 4  }  \\ \context Voice = "melodia" { \stemDown \slurDown f4 f4 } >>
<< { \voiceOne ees'2 4  } \new Voice { \voiceTwo d ( f ) } >> \oneVoice
<< { \voiceOne f  4. 8} \new Voice { \voiceTwo f4 } >> \oneVoice
1 \break
4   
<< { \voiceOne bes'2 4  } \new Voice { \voiceTwo  d ( f ) } >> \oneVoice
<< { \voiceOne { \stemUp \slurUp c'4. c8 4 } } { \voiceThree \stemUp \slurUp c,4 d} >> \oneVoice
2 2 \break
4   
2 4 
  4. ees8
1
}

>>

}

%


%
versoUno = \lyricmode { 
\set stanza = "1. "
¡San4 -- to!4 ¡San4 -- to!4 ¡San2 -- to!4 Se4 -- ñor4 om4 -- ni4 -- po4 -- ten2 -- te,2
Siem4 -- pre4 el la -- bio mí -- o lo -- o -- res Te da -- rá.
¡San4 -- to!4 ¡San4 -- to!4 ¡San2 -- to!4 "Te a" -- do - ro re -- ve -- ren2 -- te,2
Dios4 en tres per -- so2 -- nas,4 ben -- di -- ta Tri -- ni -- dad.1




}

versoDos = \lyricmode { 
\set stanza = "2. "
¡San4 -- to!4 ¡San4 -- to!4 ¡San2 -- to!4 en nu -- me -- ro -- so co -- ro,
San -- tos " " es -- co -- gi -- dos "Te a" -- do -- ran sin ce -- sar1
"De a" -- le -- gría -- a lle -- nos y sus " " co -- ro -- nas "de o"2 -- ro
Rin4 -- den an "te el" tro2 -- no4 "y el" cris -- ta -- li -- no mar.1


}

versoTres = \lyricmode { 
\set stanza = "3. "
¡San4 -- to!4 ¡San4 -- to!4 ¡San2 -- to!4 "la in" -- men -- sa mu -- che -- dum2 -- bre
"De án"1 -- ge - les que cum -- plen tu san -- ta vo -- lun -- tad,1
An4 -- te Ti se pos -- tra, ba -- ña - da de tu  lum2 -- bre,
An4 -- te Ti "que has" si2 -- do,4 que e -- res y se -- rás.1

}

versoCuatro = \lyricmode { 
\set stanza = "4. "
¡San4 -- to!4 ¡San4 -- to!4 ¡San2 -- to!4 por más "que es" -- tés ve -- la2 -- do,
"E im"4 -- po - si -- ble se -- a tu glo -- ria con -- tem -- plar;1
San4 -- to "Tú e" -- res só -- lo, y na -- da hay a tu la2 do
En4 po -- der per -- fec2 -- to,4 pu -- re -- "za y" ca -- ri -- dad.1

}

versoCinco = \lyricmode { 
\set stanza = "5. "
¡San4 -- to!4 ¡San4 -- to!4 ¡San2 -- to!4 la glo -- ria de tu nom2 -- bre
Ve4 -- mos " " en tus o -- bras en cie -- lo, tie -- "rra y" mar;1
¡San4 -- to!4 ¡San4 -- to!4 ¡San2 -- to!4 "Te a" -- do - ra -- rá to -- "do hom"2 -- bre,
Dios4 en tres per -- so2 nas4 ben -- di -- ta Tri -- ni -- dad.
}

%



%
bajo = \relative c'  {
\clef bass
\key ees \major
\time 4/4

4   
<< { \stemDown bes2 4  } \\ { \stemUp \slurUp f (aes) } >>
   
<< { \stemDown ees,2 2 } \\ { \stemUp \slurUp ees'4 (bes) } >> \break
   
<< { \stemDown c,2 4  } \\ { \stemUp \slurUp g (a) } >>
  4. 8
<< { \voiceTwo bes1 }  \new Voice { \voiceOne  bes'2 (aes!2) } >> \oneVoice \break
4   
<< { \stemDown bes2 4  } \\ { \stemUp \slurUp f (aes)} >>
<< { \stemDown aes,4. aes8 4  } \\ { \stemUp aes bes } >>
<< { \stemDown ees,2 2 } \\ { \stemUp \slurUp ee

Re: Lyrics in poly

2006-12-17 Thread Ezequiel Sierra

to be more specific

<< \context Voice = "melodia" { \voiceOne bes'4. bes8 4 g> } { \voiceTwo f4 f4 } >> \oneVoice


i get all stems down of that staff why?



On Dec 17, 2006, at 8:34 PM, Ezequiel Sierra wrote:


here is the file

<001.ly>

as the second system has all the stems down it shouldn`t cause i  
specify it stem up




On Dec 17, 2006, at 3:15 PM, Mats Bengtsson wrote:

I't much easier for us to realize exactly what you problem is (and  
for you to write the question) if you include a small example that  
illustrates the problem.


The macros \voiceOne, \voiceTwo and \oneVoice themselves shouldn't
really have anything to do with the problem. My guess is that you  
have used the <<{...} \\ {...}>> feature, which creates new Voice

contexts during the polyphony. See "Explicitly instantiating voices"
for an explanation of exactly what is going on. See also the  
section on "Divisi lyrics" for an example of keeping lyrics  
together with a voice across a polyphonic section.



  /Mats

Quoting Ezequiel Sierra <[EMAIL PROTECTED]>:

i have voiceOne and voice Two in a staff to make poly so i make  
them  oneVoice but when im adding lyrics the lyrics only goes to  
voiceOne  how can i fix that?



___
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




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


Re: tie different chord

2006-12-17 Thread Ezequiel Sierra

 ~ 
in a f clef



dosent work
On Dec 17, 2006, at 2:55 PM, Mats Bengtsson wrote:


Please give an example of what you want to do. Clearly, you can only
tie a note head to another note head of the same pitch. By default,  
LilyPond will add a tie for each matching note of a chord, but it's  
also possible to specify ties separately for each note in the  
chord, see the section on "Ties" for more information

and examples.

  /Mats

Quoting Ezequiel Sierra <[EMAIL PROTECTED]>:


how can i tie 2 chords with different notes head?


___
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: No lyrics to polyphony

2006-12-17 Thread Ezequiel Sierra

to be more specific

<< \context Voice = "melodia" { \voiceOne bes'4. bes8 4 g> } { \voiceTwo f4 f4 } >> \oneVoice


i get all stems down of that staff why?


On Dec 17, 2006, at 5:04 PM, Mats Bengtsson wrote:

See http://lists.gnu.org/archive/html/lilypond-user/2006-01/ 
msg00409.html
(The example in the manual has been moved to the section on "Divisi  
lyrics").


  /Mats

Quoting Ezequiel Sierra <[EMAIL PROTECTED]>:


i have something like

\version "2.10.2"
tope = \relative c'  {

\key ees \major
\time 4/4

\new Voice = melodia {
<< { \stemUp bes'2 4  } \\ { \stemDown d  
( f ) } >>

}
}
versoUno = \lyricmode {
\set stanza = "1. "
¡San4 -- to!4 ¡San4 -- to!4

}


\score {
<<

\context ChoirStaff <<
\new Staff = tope { \tope }
\new Lyrics \lyricsto "melodia" \versoUno
>>

>>

}

No lyrics added





___
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


Web documentation automatic language

2006-12-17 Thread David Fedoruk

Hello:

I have been using the web documentation for lilypond 2.11 quite
intensively the  last few days. I've begun to get pages in French and
a few in Spanish. This seems very odd. I did check my browsers
configuration thinking it was the problem. I use Camino which is a
Mozilla type browser for OS X.

Since it does not use an Application Preference to select language but
refers to the OS for its language configuration I thought that might
be the problem. When I posted the problem to the Camino mailing list
one of the developers checked the Lilypond documentation. He got
similar errors.

I started using FireFox, but as I used it more and more, I began to
get the same errors  French documentation served from a link in
English. It seems to crop up after some intense use, jumping from page
to page.

Has anyone else experienced this?

Cheers,
David


--

http://recordjackethistorian.wordpress.com
"Music is enough for one's life time, but one life time is not enough
for music" Sergei Rachmaninov


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


Re: Web documentation automatic language

2006-12-17 Thread Graham Percival

David Fedoruk wrote:

I have been using the web documentation for lilypond 2.11 quite
intensively the  last few days. I've begun to get pages in French and
a few in Spanish. This seems very odd.


A quick check on lilypond-devel will reveal that we are putting in a new 
mechanism for translating the docs and displaying the appropriate 
language.  I haven't been keeping track of the progress, but you may be 
interested.


If you can reproduce a problem in the stable 2.10 stream, please report 
it.  Bear in mind that 2.11 is the unstable branch and will experience 
problems from time to time.


Cheers,
- Graham


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


Re: Lyrics in poly

2006-12-17 Thread Eduardo Vieira
Citando Ezequiel Sierra <[EMAIL PROTECTED]>:

> to be more specific
>
> << \context Voice = "melodia" { \voiceOne bes'4. bes8 4  g> } { \voiceTwo f4 f4 } >> \oneVoice
>
> i get all stems down of that staff why?
>
>

You should to include \new Voice (or \new Voice = "something") , after
\voiceTwo:

<< \context Voice = "melodia" { \voiceOne bes'4. bes8 4  } \new Voice { \voiceTwo f4 f4 } >> \oneVoice


___
Com o Click21 você tem sempre vantagens! Além do email com 1 Gb, Acelerador, 
Blog,
Flog, Games e atendimento 24 horas, voce também pode falar minutos DDD com a
promoção Click 21 Minutos. Quanto mais você navega mais fala DDD.



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


Re: tie different chord

2006-12-17 Thread Eduardo Vieira
Citando Ezequiel Sierra <[EMAIL PROTECTED]>:

>  ~ 
> in a f clef
>
>
>
> dosent work
> On Dec 17, 2006, at 2:55 PM, Mats Bengtsson wrote:

You need a *slur*, not a tie: ( )

Eduardo
___
Com o Click21 você tem sempre vantagens! Além do email com 1 Gb, Acelerador, 
Blog,
Flog, Games e atendimento 24 horas, voce também pode falar minutos DDD com a
promoção Click 21 Minutos. Quanto mais você navega mais fala DDD.



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


Re: Lyrics in poly

2006-12-17 Thread Eduardo Vieira
Citando Ezequiel Sierra <[EMAIL PROTECTED]>:

> here is the file
>
>
I altered line 75 to this. Then you can do the rest as the pattern:
<< \context Voice = "melodia" { \voiceOne bes'4. bes8 4  } 
\context Voice = "alto" { \voiceTwo f4 f4 } >> \oneVoice

As Mats pointed, if you use \voiceOne and \voicTwo you won't need to be always
specifying directions for stems, ties and slurs.

Have a good day!
___
Com o Click21 você tem sempre vantagens! Além do email com 1 Gb, Acelerador, 
Blog,
Flog, Games e atendimento 24 horas, voce também pode falar minutos DDD com a
promoção Click 21 Minutos. Quanto mais você navega mais fala DDD.



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


Re: Web documentation automatic language

2006-12-17 Thread Mats Bengtsson

I noticed the same problem on the 2.10 documentation pages yesterday,
where I got the french translation by default if I hadn't specified any 
default

language in my browser Mozilla Firefox.
Setting the "Prefered language" to include English solves the problem, but
it's definitely a bug that the French version is the default if you haven't
configured your browser.

  /Mats

Graham Percival wrote:

David Fedoruk wrote:

I have been using the web documentation for lilypond 2.11 quite
intensively the  last few days. I've begun to get pages in French and
a few in Spanish. This seems very odd.


A quick check on lilypond-devel will reveal that we are putting in a 
new mechanism for translating the docs and displaying the appropriate 
language.  I haven't been keeping track of the progress, but you may 
be interested.


If you can reproduce a problem in the stable 2.10 stream, please 
report it.  Bear in mind that 2.11 is the unstable branch and will 
experience problems from time to time.


Cheers,
- Graham


___
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