Alterations display control

2015-07-30 Thread Menu Jacques
Hello folks, Is there a way to force a flat sign for all ees’s and bes’s in the following example, without using ! for each of them? Choosing a c \major key would do it, but the actual key information would then be lost. Thanks for the help! JM \version "2.19.22" \relative { \clef "bass"

Re: Alterations display control

2015-07-30 Thread David Kastrup
Menu Jacques writes: > Hello folks, > > Is there a way to force a flat sign for all ees’s and bes’s in the > following example, without using ! for each of them? > > Choosing a c \major key would do it, but the actual key information > would then be lost. > > Thanks for the help! > > JM > > > \ve

Eighth Tones (microtonal)

2015-07-30 Thread Nike Hedges
Hi, I want to write eighth tones, 1/8 rather than 1/4. I believe it's possible if I create some file referring makam.ly. Or do the dev team have a plan to create 1/8 tone system? Regards, Nike ___ lilypond-user mailing list lilypond-user@gnu.org https:/

Re: Eighth Tones (microtonal)

2015-07-30 Thread Mark Knoop
At 17:28 on 30 Jul 2015, Nike Hedges wrote: >Hi, > >I want to write eighth tones, 1/8 rather than 1/4. >I believe it's possible if I create some file referring makam.ly. >Or do the dev team have a plan to create 1/8 tone system? I use the attached. Use like this: \include "microtonal.ily" { cesqq

Re: Alterations display control

2015-07-30 Thread Menu Jacques
Hello David, Sorry for omitting I’d like to avoid the parentheses, you hit the point. JM > Le 30 juil. 2015 à 10:19, David Kastrup a écrit : > > Menu Jacques writes: > >> Hello folks, >> >> Is there a way to force a flat sign for all ees’s and bes’s in the >> following example, without usin

Re: Alterations display control

2015-07-30 Thread David Kastrup
Menu Jacques writes: > Hello David, > > Sorry for omitting I’d like to avoid the parentheses, you hit the > point. \override AccidentalCautionary.parenthesized = ##f -- David Kastrup ___ lilypond-user mailing list lilypond-user@gnu.org https://lists

Re: Alterations display control

2015-07-30 Thread Menu Jacques
Thanks David, \accidentalStyle Score.teaching \override AccidentalCautionary.parenthesized = ##f does what I need. A nice day! JM > Le 30 juil. 2015 à 11:07, David Kastrup a écrit : > > Menu Jacques writes: > >> Hello David, >> >> Sorry for omitting I’d like to avoid the parenthes

Re: Eighth Tones (microtonal)

2015-07-30 Thread Nike Hedges
Hi Mark, Thanks! It's nice. I tried it in eighth tone scale (eighthtones.ly attached) but got the following warnings, and the same ones in normal quarter tone scale (quartertones.ly attached) I got. Just my wondering. eighthtones.ly:129:1: warning: Could not find

Re: Eighth Tones (microtonal)

2015-07-30 Thread Mark Knoop
At 19:40 on 30 Jul 2015, Nike Hedges wrote: >Hi Mark, > >Thanks! It's nice. > >I tried it in eighth tone scale (eighthtones.ly attached) but got the >following warnings, and the same ones in normal quarter tone scale >(quartertones.ly attached) I got. Just my wondering. This comes from your use of

Parameterize an event function

2015-07-30 Thread Andrew Bernard
Greetings Ponderers, I have written a function to generate custom metronome marks as I want them to be. But due to limitations of my understanding, this is terribly crude - it has a hardwired crotchet for the note displayed. What I really want to achieve is to be able to pass a duration into th

Re: Parameterize an event function

2015-07-30 Thread Mark Knoop
At 22:18 on 30 Jul 2015, Andrew Bernard wrote: >Greetings Ponderers, > >I have written a function to generate custom metronome marks as I want >them to be. But due to limitations of my understanding, this is >terribly crude - it has a hardwired crotchet for the note displayed. >What I really want t

Re: Moving crescendo and decrescendo inside slurs

2015-07-30 Thread Knute Snortum
Didn't add the link: http://www.lilypond.org/doc/v2.19/Documentation/notation/modifying-shapes Knute Snortum (via Gmail) On Thu, Jul 30, 2015 at 8:30 AM, Knute Snortum wrote: > You could use \shape[1] to modify the shape of the slur. > > > Knute Snortum > (via Gmail) > > On Wed, Jul 29, 2015

Re: Moving crescendo and decrescendo inside slurs

2015-07-30 Thread Knute Snortum
You could use \shape[1] to modify the shape of the slur. Knute Snortum (via Gmail) On Wed, Jul 29, 2015 at 1:34 PM, Ralph Palmer wrote: > Greetings - > > I'm running Ly 2.18.2 under Win7. > > I'm trying get crescendos and decrescendos inside slurs. The behavior > seems to change with explicit

Re: Moving crescendo and decrescendo inside slurs

2015-07-30 Thread Ralph Palmer
Thanks, Knute. Ralph On Thu, Jul 30, 2015 at 11:30 AM, Knute Snortum wrote: > Didn't add the link: > > http://www.lilypond.org/doc/v2.19/Documentation/notation/modifying-shapes > > > Knute Snortum > (via Gmail) > > On Thu, Jul 30, 2015 at 8:30 AM, Knute Snortum wrote: > >> You could use \shape[

Aligning Tuplets and Eighth Notes

2015-07-30 Thread Sam Bivens
Hi list, I'm almost positive I've seen a solution to this before, but I can't seem to find the magic search terms to get me what I need. I want to align the third eighth-note of an eighth-note triplet to the second eighth-note of a two eighth-note segment. In the attached example, I want the two E

bookOutputName

2015-07-30 Thread Jenny
Hi. I've been using LP 2.18.2 for a few months quite successfully. I'm on Windows 7.Recently I downloaded Frescobaldi. I then started having problems running LP, which I thought must be because I was using a couple of include files, and I didn't know how to tweek Frescobaldi to accept them.So I

Re: Aligning Tuplets and Eighth Notes

2015-07-30 Thread Kevin Barry
Hi Sam, The solution is to alter the duration of the first eighth note to 4/3 of its normal duration and the second one to 2/3 like in the following example: \version "2.18.2" \relative { << { g'8*2/3 f e } \\ { c8*4/3 e8*2/3 } % note the altered durations >> } hth, Kevin On Thu

Re: Aligning Tuplets and Eighth Notes

2015-07-30 Thread Sam Bivens
Thanks, Kevin. I foolishly only altered the duration of the latter pitch. Take care, --Sam On 07/30/2015 06:04 PM, Kevin Barry wrote: > Hi Sam, > > The solution is to alter the duration of the first eighth note to 4/3 > of its normal duration and the second one to 2/3 like in the following > exa

Re: Parameterize an event function

2015-07-30 Thread Andrew Bernard
Hi Mark, Completely brilliant. Thank you very much. That function may seem overly complex, but it gives me wide flexibility in how I display tempo indications. Andrew On 30 July 2015 at 22:50:06, Mark Knoop (m...@opus11.net) wrote: Use ly:duration? (although this seems extraordinarily over-

Re: Parameterize an event function

2015-07-30 Thread David Kastrup
Andrew Bernard writes: > Hi Mark, > > Completely brilliant. Thank you very much. > > That function may seem overly complex, but it gives me wide > flexibility in how I display tempo indications. > > Andrew > > > On 30 July 2015 at 22:50:06, Mark Knoop (m...@opus11.net) wrote: > > > Use ly:duratio