Call for input: shape-notes

2020-07-26 Thread Owen Lamb
Hi all! I've been working on LilyPond for Google Summer of Code, and I have a few questions for those of you who use shape-notes in your publications. In order to better fit a new font standard (SMuFL), I'm planning to remove the whole noteheads in Emmentaler's shape note categ

Re: Ambitus with shape notes

2017-08-25 Thread David Kastrup
Lukas-Fabian Moser writes: >> >> > \version "2.19.44" >> > >> > #(define (nth n l) >> > (if (or (> n (length l)) (< n 0)) >> > (error "Index out of bounds.") >> > (if (eq? n 0) >> > (car l) >> > (nth (- n 1) (cdr l) >> >> Seriously? >> >> #(define (nth n l) (list-ref l n

Re: Ambitus with shape notes

2017-08-25 Thread Lukas-Fabian Moser
> > > \version "2.19.44" > > > > #(define (nth n l) > > (if (or (> n (length l)) (< n 0)) > > (error "Index out of bounds.") > > (if (eq? n 0) > > (car l) > > (nth (- n 1) (cdr l) > > Seriously? > > #(define (nth n l) (list-ref l n)) > Of course not - being absolutely for

Re: Ambitus with shape notes

2017-08-25 Thread David Kastrup
Lukas-Fabian Moser writes: > Here is an improved version: > > > \version "2.19.44" > > #(define (nth n l) > (if (or (> n (length l)) (< n 0)) > (error "Index out of bounds.") > (if (eq? n 0) > (car l) > (nth (- n 1) (cdr l) Seriously? #(define (nth n l) (list-ref l n))

Re: Ambitus with shape notes

2017-08-25 Thread Thomas Morley
2017-08-12 12:05 GMT+02:00 Lukas-Fabian Moser : > Here is an improved version: > > > \version "2.19.44" > > #(define (nth n l) > (if (or (> n (length l)) (< n 0)) > (error "Index out of bounds.") > (if (eq? n 0) > (car l) > (nth (- n 1) (cdr l) > > #(define (scale-notehead

Re: Ambitus with shape notes

2017-08-12 Thread Lukas-Fabian Moser
ike. > > Regarding your point about key changes within a piece, it's luckily not > really relevant to me since the kind of music that's written using shape > notes almost never changes key. > > Cheers! > Barry > > > On 11 Aug 2017 10:07 am, "Lukas-Fabian M

Re: Ambitus with shape notes

2017-08-11 Thread Barry Parsons
Amazing, thanks Lukas! I'll play around with this later but at first glance it looks like it ought to be able to do what I'd like. Regarding your point about key changes within a piece, it's luckily not really relevant to me since the kind of music that's written using shap

Re: Ambitus with shape notes

2017-08-11 Thread Lukas-Fabian Moser
gnature is issued - but > this slight inconsistency applies to ambitus marks in general since they > show note heads *left* to the first clef ever encountered by the singer.) > > Best > Lukas > > > 2017-08-11 10:02 GMT+02:00 Barry Parsons : > >> Hi all, >> >

Re: Ambitus with shape notes

2017-08-11 Thread Lukas-Fabian Moser
Lukas 2017-08-11 10:02 GMT+02:00 Barry Parsons : > Hi all, > > As a newbie to this wonderful software I have a slightly odd request. > > I set vocal music using shape notes (\sacredHarpHeads or \aikenHeads). > I've recently discovered the ambitus function, which is really u

Ambitus with shape notes

2017-08-11 Thread Barry Parsons
Hi all, As a newbie to this wonderful software I have a slightly odd request. I set vocal music using shape notes (\sacredHarpHeads or \aikenHeads). I've recently discovered the ambitus function, which is really useful. I wonder, is it possible to add the correct shaped noteheads to the am

Re: Problem with partcombine and shape notes

2016-12-31 Thread Bumby Hymnal
On Sat, Dec 31, 2016 at 4:57 AM, Malte Meyn wrote: > > \aikenHeads is a shorthand for \set shapeNoteStyles = ##(do re miMirror fa > sol la ti) which affects only the current Voice context. \partcombine uses > sometimes one and sometimes two voices so it’s not always the same Voice > context. This

Re: Problem with partcombine and shape notes

2016-12-31 Thread Malte Meyn
Am 31.12.2016 um 11:55 schrieb Phil Holmes: I think it's documented in http://lilypond.org/doc/v2.19/Documentation/notation/multiple-voices#automatic-part-combining You’re right. (I didn’t notice that my browser chose the german translation which hasn’t included this change yet.) However it wo

Re: Problem with partcombine and shape notes

2016-12-31 Thread Phil Holmes
I think it's documented in http://lilypond.org/doc/v2.19/Documentation/notation/multiple-voices#automatic-part-combining -- Phil Holmes - Original Message - From: "Malte Meyn" To: Sent: Saturday, December 31, 2016 10:04 AM Subject: Re: Problem with partcombine

Re: Problem with partcombine and shape notes

2016-12-31 Thread Malte Meyn
Am 31.12.2016 um 10:57 schrieb Malte Meyn: By the way: what’s this optional \partcombine argument introduced in 2.19? I haven’t found any documentation. Found it. It’s an two year old addition that has been documented only in appendix A.18 of the NR (which seems to be generated directly from

Re: Problem with partcombine and shape notes

2016-12-31 Thread Malte Meyn
Am 30.12.2016 um 07:27 schrieb Bumby Hymnal: I've run into a problem with using \partcombine while using \aikenHeads. The problem is that under certain circumstances the aiken shape note heads are not used in the output of \partcombine. The strange thing is that it sometimes works. \aikenHe

Problem with partcombine and shape notes

2016-12-29 Thread Bumby Hymnal
The first voice is a basic scale. The 2nd voice is exactly the same. The third voice is a third below the first voice, and the fourth voice alternates between being unison and being a 3rd apart from the first voice. Each voice is rendered independently and shows the shape notes properly. Then the

Re: Turning off shape notes

2009-01-29 Thread M Watts
Carl Peterson wrote: I'm using shape notes in some music I'm writing. There is one part of the music that needs to be notated as spoken. However, when I apply the override code as given in the documentation, I only get shape notes. Is there some command that I have to put in to

Turning off shape notes

2009-01-29 Thread Carl Peterson
I'm using shape notes in some music I'm writing. There is one part of the music that needs to be notated as spoken. However, when I apply the override code as given in the documentation, I only get shape notes. Is there some command that I have to put in to turn shape notes off? Here

Re: Call for help : pitches.itely 1.1.4.3 - shape notes

2008-02-14 Thread Graham Percival
On Thu, 14 Feb 2008 07:56:57 -0500 "Palmer, Ralph" <[EMAIL PROTECTED]> wrote: > I'm rewriting pitches.itely, and I've run into a snag. I'm only > marginally familiar with shape notes, and I'd like some help with that > section : 1.1.4.3 Shape note h

Call for help : pitches.itely 1.1.4.3 - shape notes

2008-02-14 Thread Palmer, Ralph
Hi - I'm rewriting pitches.itely, and I've run into a snag. I'm only marginally familiar with shape notes, and I'd like some help with that section : 1.1.4.3 Shape note heads. 1. It's not clear to me why the solmization name "sol" is replaced by "#f&q

Re: shape notes

2006-06-20 Thread Eduardo Vieira
- Original Message - From: "Daniel Johnson" <[EMAIL PROTECTED]> To: "Monk Panteleimon" <[EMAIL PROTECTED]> Cc: Sent: Tuesday, June 20, 2006 4:17 PM Subject: Re: shape notes > Monk Panteleimon wrote: >> Dear Lilypond users, >> >> S

Re: shape notes

2006-06-20 Thread Daniel Johnson
la mi). That's the Sacred Harp system. What lilypond has goes "sol sol mi sol fa la sol." Very funny scale, that. Muchas Gracias. Fr. P I compile Lilypond instead of using GUB, and I apply the attached patch to make shape-notes wider. They are a bit narrower than 2.7, but co

shape notes

2006-06-20 Thread Monk Panteleimon
Dear Lilypond users, Somehow the SacredHarpHeads have gotten very small in 2.8. The regular notehead (the one called #f in property-init.ly) is normally sized, of course, so one can't simply globally adjust notehead size or one ends up with big fat "sol" noteheads. Is there a way to get the shaped

Re: Shape notes

2002-02-20 Thread Sander, Martin
r) to learn the 'hard way'. So it certainly would be fine to 'have' (just in case) shape notes. I learned a lot today. Have a good day! Martin -- Martin Sander e-mail: [EMAIL PROTECTED] Astrium GmbH - Abt. IP 34 / Postfach 801168 / 81663 Muenchen T

Not quite on topic: Shape notes again

2002-02-20 Thread Amelie Zapf
Hi folks, please excuse the comments I made yesterday about shape notes. I thought it was another one of these oddities in books like "How to Learn the Guitar in Six Days without even really learning Notes". I did not know they had historic significance. Regards, Amy -- Louey

Re: Shape notes

2002-02-20 Thread Rune Zedeler
Citat "J. David Blackstone" <[EMAIL PROTECTED]>: > >> walkon71> are there any plans to  develop any software using > shape > >> notes (do re mi)? The main problem is that the esthetical impression of the shape notes is extreamely poor. I.e. triangul

Re: Food for Thought (was: Shape notes, EZ play notation)

2002-02-20 Thread Rune Zedeler
Citat Amelie Zapf <[EMAIL PROTECTED]>: > - An easier way to write drum notation (not fussing with Threads all > the > time)? Eh, you don't need threads to use the (temporary) drum notation algorithm ( see /input/test/drums.ly ). Imho the only problem with it is that it "feels" temporary. It is

Re: Shape notes

2002-02-20 Thread Laura Conrad
>>>>> "Martin" == Martin Sander writes: Martin> Now back to the originial question: Singing all my life Martin> out of 'normal' notes I personally (like Amelie?) see no Martin> advantage in shape notes. Maybe if I was used to them

Re: Shape notes

2002-02-20 Thread Sander, Martin
originial question: Singing all my life out of 'normal' notes I personally (like Amelie?) see no advantage in shape notes. Maybe if I was used to them? I know of methods for teaching instruments to children using colours and so. But I am asking myself (my children learnt notes the usual way)

Re: Shape notes

2002-02-20 Thread Laura Conrad
>>>>> "Martin" == Martin Sander writes: Martin> What are 'shape notes'? Is ther any website or something like that Martin> showing them? This URL has a clear basic example and pointers to other stuff: http://web.mit.edu/user/i/j/ijs/www/

Food for Thought (was: Shape notes, EZ play notation)

2002-02-20 Thread Han-Wen Nienhuys
[EMAIL PROTECTED] writes: > - Percent repeats for 4 bars? what do these look like? -- Han-Wen Nienhuys | [EMAIL PROTECTED]| http://www.cs.uu.nl/~hanwen/ ___ Lilypond-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/l

Re: Food for Thought (was: Shape notes, EZ play notation)

2002-02-20 Thread Glen Prideaux
Amelie Zapf <[EMAIL PROTECTED]> writes: > I don't intend to hurt anybody's feelings here, but wouldn't it be better to > address the following problems before supporting yet another kind of "easy > notation"? > > - Fully configurable bar line shapes linebreaks (end AND beginning of line)? > -

Re: Shape notes

2002-02-19 Thread Sander, Martin
Laura Conrad wrote: > > >>>>> "walkon71" == walkon71 <[EMAIL PROTECTED]> writes: > > walkon71> are there any plans to develop any software using shape notes (do >re mi)? > > Not that I know of, but I'd use them if they were t

Food for Thought (was: Shape notes, EZ play notation)

2002-02-19 Thread Amelie Zapf
Hi folks, sorry that I have not been an active poster lately, but my schedule was so full. But the discussion about "shape notation" here got to me. I don't intend to hurt anybody's feelings here, but wouldn't it be better to address the following problems before supporting yet another kind of

Re: Shape notes

2002-02-18 Thread J. David Blackstone
I wrote: > Once I can compare the pitch of each note to the key, I can pick the > shapes ... once I get a shaped-note font. (The dependencies just keep > snowballing!) I've got a friend with a truetype font, but I don't think > that will work with TeTeX. (Anyone who corrects me will make me v

Re: Shape notes

2002-02-18 Thread J. David Blackstone
A Long Time Ago (January 19), I wrote: >Laura Conrad wrote: >>>>>>> "walkon71" == walkon71 <[EMAIL PROTECTED]> writes: >> >> walkon71> are there any plans to  develop any software using shape >> notes (do re mi)? >> >&

Re: Shape notes

2002-01-19 Thread J. David Blackstone
>>>>>> "walkon71" == walkon71 <[EMAIL PROTECTED]> writes: > > walkon71> are there any plans to  develop any software using shape > notes (do re mi)? > > Not that I know of, but I'd use them if they were there, too. I plan to do th

Shape notes

2002-01-19 Thread Laura Conrad
>>>>> "walkon71" == walkon71 <[EMAIL PROTECTED]> writes: walkon71> are there any plans to  develop any software using shape notes (do re mi)? Not that I know of, but I'd use them if they were there, too. -- Laura (mailto:[EMAIL PROTECTED] , ht