Re: cre - - sen - - do

2013-05-04 Thread Keith OHara
Derek shmerek.com> writes: > I tried within my dymanic stave and this was the result: > s4 s8 {s8-\tweak#'text"cre"\cresc s4 s8-\tweak#'text"scen"\cresc s8%|28 > s4 s8-\tweak#'text"do"\cresc s8 s4 -\tweak#'text"molto"\cresc s4%|29 > s4\f} s4 s4 s4%|30 >

Re: cre - - sen - - do

2013-05-03 Thread Derek
I tried within my dymanic stave and this was the result: s4 s8 {s8-\tweak#'text"cre"\cresc s4 s8-\tweak#'text"scen"\cresc s8%|28 s4 s8-\tweak#'text"do"\cresc s8 s4 -\tweak#'text"molto"\cresc s4%|29 s4\f} s4 s4 s4%|30 -- View this

Re: cre - - sen - - do

2013-05-03 Thread Wilbert Berendsen
Op Thu, 02 May 2013 07:59:00 +1000 Nick Payne schreef: > Wouldn't it be easier on the performer to have "cresc. poco a poco" > or "dim. poco a poco", so that they don't have to scan to the end of > the phrase to see if it is a crescendo or diminuendo. Yes, but in this case I copied an old score

Re: cre - - sen - - do

2013-05-03 Thread Carlo Stemberger
Il 30/04/2013 06:36, Jay Anderson ha scritto: I believe this has been discussed in the past, but I couldn't find an enhancement request filed. This is the old thread: http://thread.gmane.org/gmane.comp.gnu.lilypond.devel/29244/ Bye, Carlo -- .-. | Registered Linux User #443882

Re: cre - - sen - - do

2013-05-02 Thread Derek
Thanks for all the responses there are lots of options to try here -- View this message in context: http://lilypond.1069038.n5.nabble.com/cre-sen-do-tp145225p145387.html Sent from the User mailing list archive at Nabble.com. ___ lilypond-user mailing

Re: cre - - sen - - do

2013-05-01 Thread Nick Payne
On 01/05/13 23:42, Wilbert Berendsen wrote: Op Mon, 29 Apr 2013 20:55:31 -0700 (PDT) Derek schreef: Hi there, I have been searching for a while but I can't seem to find anything like this. Does anyone know what I would use to spread a dynamic marking like the one in the picture over a few note

Re: cre - - sen - - do

2013-05-01 Thread Wilbert Berendsen
Op Mon, 29 Apr 2013 20:55:31 -0700 (PDT) Derek schreef: > Hi there, I have been searching for a while but I can't seem to find > anything like this. Does anyone know what I would use to spread a > dynamic marking like the one in the picture over a few notes or bars? >

Re: cre - - sen - - do

2013-05-01 Thread Eluze
Derek wrote > Would one do that, bug list thing, on the google project page? bug list (the google issue tracker is reserved for developers and bug squad members ) thanks Eluze -- View this message in context: http://lilypond.1069038.n5.nabble.com/cre-sen-do-tp145225p145290.html Sent from the

Re: cre - - sen - - do

2013-04-30 Thread Derek
Would one do that, bug list thing, on the google project page? -- View this message in context: http://lilypond.1069038.n5.nabble.com/cre-sen-do-tp145225p145273.html Sent from the User mailing list archive at Nabble.com. ___ lilypond-user mailing lis

Re: cre - - sen - - do

2013-04-30 Thread Eluze
Jay Anderson wrote > On Mon, Apr 29, 2013 at 9:20 PM, SoundsFromSound > < > soundsfromsound@ > > wrote: >> Oh, you mean like a text spanner? > > Close, but I think what's being asked isn't currently possible. We can > set the left and right text with dashed line in between (cresc -- > endo), but

Re: cre - - sen - - do

2013-04-30 Thread Werner LEMBERG
> Even better, IMHO: > > cre = -\tweak #'text #"cre" \cresc > scen = -\tweak #'text #"scen" \cresc > do = -\tweak #'text #"do" -\tweak #'style #'none \cresc > > { > b2\cre b > b\scen b > b\do b > b1\f > } With the current development version, it's even more compact: cre = -\tweak tex

RE: cre - - sen - - do

2013-04-30 Thread Daniel Rosen
> -Original Message- > From: Keith OHara [mailto:k-ohara5...@oco.net] > Sent: Tuesday, April 30, 2013 1:21 AM > To: lilypond-user@gnu.org > Subject: Re: cre - - sen - - do > > Derek shmerek.com> writes: > > > Thanks for that. I assume this means a

Re: cre - - sen - - do

2013-04-30 Thread Nick Payne
This does it, at the expense of having to enter several tweak commands and manually pick the location for the central syllable: \version "2.17.15" << \new Staff \relative c' { \repeat unfold 12 { c4 } } \new Dynamics { s1-\tweak bound-details.left.text "cres " -\tweak bound-de

Re: cre - - sen - - do

2013-04-29 Thread Madoka Machitani
Hello :) This is trivial, but having functions like these might help ease typing a lot: #(define (span-maker type) (lambda (text) (make-music 'type 'span-direction START 'span-type 'text 'span-text text))) textCresc = #(define-event-func

Re: cre - - sen - - do

2013-04-29 Thread Derek
Awesome that works thanks! Thank you everybody who took the time to comment -- View this message in context: http://lilypond.1069038.n5.nabble.com/cre-sen-do-tp145225p145235.html Sent from the User mailing list archive at Nabble.com. ___ lilypond-use

Re: cre - - sen - - do

2013-04-29 Thread Shane Brandes
No but if it is a relatively small score you can fight with using mark up and sort of spreading the bits out manually. I have done it a few times and it can work out reasonably well, but there does not at the moment seem to be an automagical way. Shane On Tue, Apr 30, 2013 at 1:11 AM, Derek wro

Re: cre - - sen - - do

2013-04-29 Thread Keith OHara
Derek shmerek.com> writes: > Thanks for that. I assume this means at this juncture it isn't possible? > cheers Writing a chain of crescendos spelling out each syllable is possible { b2-\tweak#'text"cres"\cresc b b-\tweak#'text"cen"\cresc b b-\tweak#'text"do"\cresc b b1\f }

Re: cre - - sen - - do

2013-04-29 Thread Derek
Hi Jay, Thanks for that. I assume this means at this juncture it isn't possible? cheers -- View this message in context: http://lilypond.1069038.n5.nabble.com/cre-sen-do-tp145225p145231.html Sent from the User mailing list archive at Nabble.com. ___

Re: cre - - sen - - do

2013-04-29 Thread Jay Anderson
On Mon, Apr 29, 2013 at 9:20 PM, SoundsFromSound wrote: > Oh, you mean like a text spanner? Close, but I think what's being asked isn't currently possible. We can set the left and right text with dashed line in between (cresc -- endo), but not set any intermediate text (cre -- scen -- do). I beli

Re: cre - - sen - - do

2013-04-29 Thread SoundsFromSound
Oh, you mean like a text spanner? http://www.lilypond.org/doc/v2.16/Documentation/snippets/expressive-marks (see down the page a bit, in the "Creating text spanners" sections.) There you can customize the text and stretch it as needed. Hope this helps, Ben Derek wrote > Hey thanks, I tried t

Re: cre - - sen - - do

2013-04-29 Thread Derek
Hey thanks, I tried that but I can't see a way to spread the syllables across which is what I am looking for. -- View this message in context: http://lilypond.1069038.n5.nabble.com/cre-sen-do-tp145225p145227.html Sent from the User mailing list archive at Nabble.com. __

Re: cre - - sen - - do

2013-04-29 Thread SoundsFromSound
Hello, Does this snippet help you? ___ \version "2.17.17" \relative c'' { \override TextSpanner #'(bound-details left text) = \markup { \upright "rit." } b1\startTextSpan c e,\stopTextSpan } http://www.lilypond.org/doc/v2.16/Documentation/notation/writing-text#text-spanners