Re: In octaves

2008-04-25 Thread Valentin Villenave
2008/4/25 Jay Anderson <[EMAIL PROTECTED]>: > To make it work in a relative section always use 0 for the octave up > and -2 for the octave down. I don't really know how to make it work > both inside and outside of a relative section easily. This is my first > dip into some of lilypond's intern

strange problem of variable definition and more error messages

2008-04-25 Thread hhpmusic
Hi, I just finished typesetting one of my very early piece. I want to ease the writing when every time using Chinese font ile "simfang.ttf", so I put an override font-name line in "mydefs.ly". I have defined lots of things used very often in this file. But the log file says this override is wr

custom metronome-markup procedure causes weird goops-error

2008-04-25 Thread Valentin Villenave
Greetings everybody, a few days ago Neil sent a new snippet to be added in input/new : "Adding text indications to metronome marks". It involved quite a lot of typing, so I tried to come up with a function that would be easier to use. Here's my code; it works quite well on simple examples, but on

Re: custom metronome-markup procedure causes weird goops-error

2008-04-25 Thread Valentin Villenave
2008/4/25 Valentin Villenave <[EMAIL PROTECTED]>: > Here's my code; it works quite well on simple examples, but on complex > scores it triggers an error I've never seen: OK, I've fixed it; it actually involved using a different name for the metronomeMarkFormatter procedure: mov = #(define-musi

Re: percussion definition

2008-04-25 Thread Rune Zedeler
alistair zaldua skrev: I was curious to know whether it was possible to set up and define a percussion clef from scratch. Read the section about Percussion staves in the manual (section 7.4.3 in stable version) -Rune ___ lilypond-user mailing l

introit

2008-04-25 Thread James E. Bailey
I thought I would ask the list's collective knowledge before I begin this, has anyone here any experience with having an introit for a choral piece, say for a mass that begins wtih a quotation of a chant. I can think of several ways to put a single measure, slightly smaller, without time si

Re: custom metronome-markup procedure causes weird goops-error

2008-04-25 Thread Neil Puttock
On 25/04/2008, Valentin Villenave <[EMAIL PROTECTED]> wrote: > 2008/4/25 Valentin Villenave <[EMAIL PROTECTED]>: > > > > Here's my code; it works quite well on simple examples, but on complex > > scores it triggers an error I've never seen: > > > OK, I've fixed it; it actually involved using a

Re: custom metronome-markup procedure causes weird goops-error

2008-04-25 Thread Valentin Villenave
2008/4/25 Neil Puttock <[EMAIL PROTECTED]>: > That's good, but there are two problems with it; one quite serious if > you value having MIDI output. I don't, so I don't care :) > First, you haven't set tempoWholesPerMinute properly, unfortunately > (it's the same problem I was scratching my h

introitus

2008-04-25 Thread James E. Bailey
Okay, so I was a bit mistaken, I've gotten everything done except centering the measure. I thought I could use something simple like indent = #0 line-width=measureLength, but that was a big not. So, is there any way I can accurately (and easily) center a measure horizontally on the page?

Re: introitus

2008-04-25 Thread Mats Bengtsson
One solution is to typeset it using a centered markup: \markup{\fill-line {\score{\relative { c d e f }\layout{ragged-right=##t /Mats James E. Bailey wrote: Okay, so I was a bit mistaken, I've gotten everything done except centering the measure. I thought I could use something simple

Re: introit

2008-04-25 Thread Andrew Hawryluk
You can use a \markup \score construction. Here it is placed in the subsubtitle: http://lsr.dsi.unimi.it/LSR/Snippet?id=250 You could also place it in a separate \markup section between the headers and the real \score. Andrew On Fri, Apr 25, 2008 at 7:16 AM, James E. Bailey <[EMAIL PROTECTED]> w

Re: custom metronome-markup procedure causes weird goops-error

2008-04-25 Thread Neil Puttock
On 25/04/2008, Valentin Villenave <[EMAIL PROTECTED]> wrote: > 2008/4/25 Neil Puttock <[EMAIL PROTECTED]>: > > > > That's good, but there are two problems with it; one quite serious if > > you value having MIDI output. > > > I don't, so I don't care :) > > > > First, you haven't set tempoWhol

Re: custom metronome-markup procedure causes weird goops-error

2008-04-25 Thread Neil Puttock
On 25/04/2008, Neil Puttock <[EMAIL PROTECTED]> wrote: > If the MIDI problem can be solved, I think this would prove a better > snippet than the one I added, since it works under 2.10. It's almost too simple; I was thinking up all sorts of outlandish constructs to get the right value, but the a

Re: custom metronome-markup procedure causes weird goops-error

2008-04-25 Thread Valentin Villenave
2008/4/25 Neil Puttock <[EMAIL PROTECTED]>: > This could be solved easily *if* parse-simple-duration can be made > public , so it can be accessed from a .ly file. Then it's just a > matter of changing string->duration to the following: I think you'd just need to ly:load the relevant file. 200

Re: introitus

2008-04-25 Thread James E. Bailey
Thank you so much! I had no idea I could include a \score block inside a markup Am 25.04.2008 um 16:27 schrieb Mats Bengtsson: One solution is to typeset it using a centered markup: \markup{\fill-line {\score{\relative { c d e f }\layout{ragged- right=##t /Mats James E. Bailey wrote