Re: lilypond.org down?

2008-09-26 Thread plutek-infinity

>Date: Fri, 26 Sep 2008 10:15:47 -0700
>From: Paul Scott <[EMAIL PROTECTED]>

>>From here lilypond.org seems to be down.  I can't even ping it.

it looks fine from here.

-- 
.pltk.


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


Re: lilypond.org down?

2008-09-26 Thread plutek-infinity
>Date: Fri, 26 Sep 2008 10:37:30 -0700
>From: Patrick Horgan <[EMAIL PROTECTED]>
>
>Paul Scott wrote:
>> Hi,
>>
>> >From here lilypond.org seems to be down.  I can't even ping it.
>>
>> Paul Scott
>>   
> From here too--if some can get to it, then something on the backbone 
>quit routing for some reason.  I did a traceroute which only worked to 
>12 hops, then tried up to 30 with no happiness.  You should be able to 
>get anywhere in the internet in 20-22.  I'm guessing someone's routing 
>tables are screwed up.  It goes off into xs4all's netword and just 
>rattles around for awhile and dies.
>
>traceroute to lilypond.org (82.94.241.173), 30 hops max, 40 byte packets
> 1  172.16.1.1 (172.16.1.1)  0.588 ms  0.648 ms  0.746 ms
> 2  bras3-l0.pltnca.sbcglobal.net (151.164.184.79)  23.428 ms  28.827 
>ms  34.258 ms
> 3  76.246.22.2 (76.246.22.2)  35.415 ms  35.896 ms  40.631 ms
> 4  bb2-g3-0.pltnca.sbcglobal.net (151.164.43.56)  45.345 ms  49.654 ms  
>49.964 ms
> 5  ppp-151-164-38-18.rcsntx.swbell.net (151.164.38.18)  53.895 ms  
>55.809 ms  58.520 ms
> 6  asn6398-bellsouth.pxpaca.sbcglobal.net (151.164.248.234)  61.007 ms  
>14.430 ms  23.392 ms
> 7  10gigabitethernet2-4.core1.ash1.he.net (72.52.92.30)  92.778 ms  
>95.785 ms  99.929 ms
> 8  10gigabitethernet2-1.core1.lon1.he.net (72.52.92.138)  185.327 ms  
>190.211 ms  195.135 ms
> 9  10gigabitethernet1-1.core1.ams1.he.net (72.52.92.82)  210.356 ms  
>210.849 ms  212.300 ms
>10  ams-ix.sara.xs4all.net (195.69.144.48)  216.472 ms  217.969 ms  
>220.446 ms
>11  0.so-1-0-0.xr3.3d12.xs4all.net (194.109.5.5)  224.380 ms  226.561 
>ms  229.305 ms
>12  te5-4.swcolo1.3d12.xs4all.net (194.109.12.30)  208.551 ms  172.022 
>ms  174.125 ms
>13  * * *
>14  * * *
>15  * * *
>16  * * *
>17  * * *
>18  * * *
>19  * * *
>20  * * *
>21  * * *
>22  * * *
>23  * * *
>24  * * *
>25  * * *
>26  * * *
>27  * * *
>28  * * *
>29  * * *
>30  * * *
>
>Patrick

hmmm strange: no, i can't ping either, and my traceroute looks much like 
yours. however, i can browse all over lilypond.org pages (refreshing also, to 
make usre i'm not using cached pages) with no trouble. wierd.

-- 
.pltk.


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


house chord style - global?

2008-10-02 Thread plutek-infinity
greetings!

i have implemented some changes to chord markup symbols, using the method shown 
at 
http://lilypond.org/doc/v2.11/Documentation/user/lilypond-big-page#Customizing-chord-names
  --- i've got this in a house-style.ly, which i \include at the beginning of 
each lilypond file:

% Exception music is chords with markups
chExceptionMusic = {
  1-\markup { \super "maj7" }
  1-\markup { \super "maj9" }
  1-\markup { \super "maj11" }
  1-\markup { \super "7alt" }
  1-\markup { \super "6(add9)" }
}
% Convert music to list and prepend to existing exceptions.
chExceptions = #( append
  ( sequential-music-to-chord-exceptions chExceptionMusic #t)
  ignatzekExceptions)

i also wish to have chord symbols only notated when they change. normally, to 
implement that and the chord symbol modifications, i must put this in any 
\chords blocks which occur in any ly files:

\set chordNameExceptions = #chExceptions 
\set chordChanges = ##t

that all works fine, but i'm wondering if there is some way of setting 
chordNameExceptions and chordChanges globally, in the house-style.ly file, 
instead of having to \set it in every \chords block of every score.

cheers!

-- 
.pltk.


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


wildcards for \include ?

2008-10-08 Thread plutek-infinity
greetings!

thing kind of thing doesn't seem to work:
\include "/some_directory/*.ly"

and i don't see any reference to wildcards for \include in the docs.
is it possible somehow?

thanks!

-- 
.pltk.


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


Re: house chord style - global?

2008-10-08 Thread plutek-infinity
>From: "Carl D. Sorensen" <[EMAIL PROTECTED]>
>Date: Thu, 2 Oct 2008 15:43:13 -0600

>On 10/2/08 9:59 AM, "plutek-infinity" <[EMAIL PROTECTED]> wrote:
>
>> i also wish to have chord symbols only notated when they change. normally, to
>> implement that and the chord symbol modifications, i must put this in any
>> \chords blocks which occur in any ly files:
>>
>> \set chordNameExceptions = #chExceptions
>> \set chordChanges = ##t
>>
>> that all works fine, but i'm wondering if there is some way of setting
>> chordNameExceptions and chordChanges globally, in the house-style.ly file,
>> instead of having to \set it in every \chords block of every score.
>>
>
>You can do this quite easily.
>
>You need to remember that \chords is a shortcut for
>\new ChordNames { \chordmode { }}
>
>All you need to do is redefine the defaults for the ChordNames context.
>
>The details for doing this are explained in the 2.11 documentation, section
>5.1.4 Changing context default settings
>
>Once you have this done, perhaps you could post the results to
>the LilyPond Snippet Repository.

thanks for your help, carl!

i've posted a snippet.

-- 
.pltk.


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


Re: unusual Alto Clef

2008-10-09 Thread plutek-infinity
>From: David Bobroff <[EMAIL PROTECTED]>
>
>I've posted a slightly clearer copy of such a clef to issue 693.  For 
>what it's worth, my memory tells me that this style of C clef is to be 
>found in French publications.  I certainly remember seeing it in 
>trombone parts of French pieces and this example comes from the Ravel 
>Concerto for left hand (1st trombone part).
>
>David
>
>Jonathan Kulp wrote:
>> I can't seem to find a better image of this clef in the materials I have 
>> on hand or on an internet search.  I got it originally from a .pdf file 
>> downloaded from the International Music Score Library Project.  It'd be 
>> better to have an original paper score in hand for scanning at high res. 
>>  If no one can come up with one in a day or two I'll talk to our 
>> orchestra conductor and see if he might have some examples in his library.
>> 
>> Jon
>> 
>> Werner LEMBERG wrote:
>> 
>>>
>>> Well, your version differs heavily from what the scanned image shows.
>>> However, to create a good glyph shape, we probably need better scans
>>> of probably larger clefs.  Anyone who could provide that, probably
>>> adding it to
>>>
>>>   http://code.google.com/p/lilypond/issues/detail?id=693

i've added a couple more -- as a bassoonist, i see this clef quite a bit in 
french repertoire. Leduc no longer uses it, though, favouring the modern style 
currently implemented in lilypond.

cheers!

-- 
.pltk.


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


predefined commands reference

2008-10-09 Thread plutek-infinity
greetings!

is there a collected reference of the meaning of the many lilypond predefined 
commands? i don't see it in the docs

in particular, right now i'm trying to figure exactly what 
\compressFullBarRests does, so i can use my global style file to direct 
multi-measure rests to always compress.

thanks!

-- 
.pltk.


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


Re: predefined commands reference

2008-10-09 Thread plutek-infinity
>From: "Neil Puttock" <[EMAIL PROTECTED]>

>2008/10/9 plutek-infinity <[EMAIL PROTECTED]>:
>> greetings!
>>
>> is there a collected reference of the meaning of the many lilypond 
>> predefined commands? i don't see it in the docs
>
>Unfortunately not, since there's currently no automatic documentation
>generation for the predef files (it's on the list of TODOs).
>
>> in particular, right now i'm trying to figure exactly what 
>> \compressFullBarRests does, so i can use my global style file to direct 
>> multi-measure rests to always compress.
>
>Have you tried the index?
>
>http://kainhofer.com/~lilypond/Documentation/user/lilypond/LilyPond-command-index.html#LilyPond-command-index_ky_symbol-14

thanks, neil as far as i can see, the index just shows me how to use 
\compressFullBarRests inside a score, without pointing me to any clues about 
how to accomplish the same thing globally.>

-- 
.pltk.


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


Re: predefined commands reference

2008-10-09 Thread plutek-infinity
>From: "Neil Puttock" <[EMAIL PROTECTED]>

>...look at the the definition in ly/

thanks very much, graham and neil -- that was the hint i needed!

cheers!


-- 
.pltk.


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


chord name position

2008-10-16 Thread plutek-infinity
greetings!

i don't understand why the chord names end up below the staff when i do this:

-

\version "2.11.61"

changes = \chords {
  c1 c1
}

slashes = {
  \override NoteHead #'style = #'slash
  b'1 b'1
}

\score {
  \new Staff <<
\changes
\slashes
  >>
}

---

would someone be kind enough to explain?
thanks very much!


-- 
.pltk.


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


doits on a chord?

2008-10-17 Thread plutek-infinity
greetings!

i'm trying to figure out how to apply doits to a chord, and neither of these 
produces anything:

\score { 1-\bendAfter #+5 }
\score { 1 }

this has the desired effect, but seems messy and gives clashing note column 
errors:

\score { \new Staff { <> } }

does anyone have a solution for this?
thanks!


-- 
.pltk.


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


global time signature style in 2.11.62

2008-10-24 Thread plutek-infinity
greetings!

in 2.11.61, this changed time signature style to numeric:

  \layout {
\context {
  \Staff
  \override TimeSignature #'style = #'()
}
  }

in 2.11.62, it no longer does so, but the definition for numericTimeSignature 
in property-init.ly is:

  \override Staff.TimeSignature #'style = #'()

i don't understand why it's not working. would someone be kind enough to help 
me understand?

thanks in advance!

-- 
.pltk.


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


Re: global time signature style in 2.11.62

2008-10-24 Thread plutek-infinity
>Date: Fri, 24 Oct 2008 17:43:52 +0200
>From: Mats Bengtsson <[EMAIL PROTECTED]>

>It certainly works over here in version 2.11.63.

sorry my mistake. i had this later in my layout block:

\context {
 \RemoveEmptyStaffContext
 }

that command, of course, defines a staff context, so i guess the two staff 
contexts were conflicting.

>plutek-infinity wrote:
>> greetings!
>>
>> in 2.11.61, this changed time signature style to numeric:
>>
>>   \layout {
>> \context {
>>   \Staff
>>   \override TimeSignature #'style = #'()
>> }
>>   }
>>
>> in 2.11.62, it no longer does so, but the definition for 
>> numericTimeSignature in property-init.ly is:
>>
>>   \override Staff.TimeSignature #'style = #'()
>>
>> i don't understand why it's not working. would someone be kind enough to 
>> help me understand?
>>
>> thanks in advance!
>>
>>   
>
>-- 
>=
>   Mats Bengtsson
>   Signal Processing
>   School of Electrical Engineering
>   Royal Institute of Technology (KTH)
>   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
>=
>
>


-- 
.pltk.


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


Re: global time signature style in 2.11.62

2008-10-24 Thread plutek-infinity
>Date: Fri, 24 Oct 2008 18:05:46 +0200
>From: Mats Bengtsson <[EMAIL PROTECTED]>
>
>plutek-infinity wrote:
>>
>> sorry my mistake. i had this later in my layout block:
>>
>> \context {
>>   \RemoveEmptyStaffContext
>>   }
>>
>> that command, of course, defines a staff context, so i guess the two staff 
>> contexts were conflicting.
>>   
>The last definition in your file is the one that's used.
>
>   /Mats

hmmm makes sense. however, both are active if i do this:

\layout {
  \context {
\RemoveEmptyStaffContext
  } 
  \context {
\Staff \override TimeSignature #'style = #'()
  }
}

if, however, i remove the first \context block, and put the 
RemoveEmptyStaffContext definition in the single remaining Staff block, like 
this:

\layout {
\context {
  \Staff \override TimeSignature #'style = #'()
  \remove "Axis_group_engraver"
  \consists "Hara_kiri_engraver"
  \override Beam #'auto-knee-gap = #'()
  \override VerticalAxisGroup #'remove-empty = ##t
} 
}

then the output looks ok, but i get these warnings in a large, multi-staff 
system:

warning: Axis_group_engraver: vertical group already has a parent
warning: are there two Axis_group_engravers?
warning: removing this vertical group

i'm out of my depth here!

cheers!

-- 
.pltk.


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