Re; slur problem

2014-08-30 Thread info
Thank you Pierre and Dominic that was the solution. Jay ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: slur problem

2014-08-30 Thread Dominic
The slur should be attached to the end of the 'fis', not the beginning of the 'd', like this: /fis,1( \time 3/4 d'2.)/ -- View this message in context: http://lilypond.1069038.n5.nabble.com/slur-problem-tp165923p165926.html Sent from the User mailing list archive at Nabble.com. __

Re: slur problem

2014-08-30 Thread Pierre Perol-Schneider
Hi Jay, 2014-08-30 21:54 GMT+02:00 : > the slur from fis1 to the d'2. doesn't work here but did in the full > score. So what do I do to make this work in the part? > Try : \version "2.18.0" horn = \relative c, { \clef "bass_8" \key c \major \time 4/4 fis,1 ( \time 3/4 d'2.)

Re: Slur Problem....

2008-07-20 Thread PT.Guitar
Hi, Thanks, Thanks Yes its's that... Solved... Anthony Boyd-2 wrote: > > On Sun, Jul 20, 2008 at 11:25 AM, PT.Guitar <[EMAIL PROTECTED]> wrote: >> >> Hi friends, >> >> http://www.nabble.com/file/p18556027/Noname.jpg >> >> How i can upper the end point of the slur on the g note? >> >> Thanks

Re: Slur Problem....

2008-07-20 Thread Anthony
On Sun, Jul 20, 2008 at 11:25 AM, PT.Guitar <[EMAIL PROTECTED]> wrote: > > Hi friends, > > http://www.nabble.com/file/p18556027/Noname.jpg > > How i can upper the end point of the slur on the g note? > > Thanks, Something like this override should do the trick: \version "2.11.52" { \once \overr

Re: slur problem

2007-06-08 Thread Mats Bengtsson
Just read the next section on the manual, "Explicitly instantiating voices". %% - LilyPond code - \version "2.11.23" \paper{ ragged-right=##t } \relative c'' { c c c c( | << { \voiceOne c) c c c( } \new Voice { \voiceTwo g g g g } >> \oneVoice c c) c c | } %% --

Re: slur problem - solved?

2007-06-08 Thread Zoltan Selyem
Hello Tao, In my previous letter I gave the explanation, now here is a solution. You should simply take that note (d4) out of the polyphony: %%% - \version "2.10.23" inS = { \override Voice.Fingering #'avoid-slur = #'inside } outS =

Re: slur problem

2007-06-08 Thread Zoltan Selyem
Hello Tao, A smaller example of your problem is this: %% - LilyPond code - \version "2.11.23" \paper{ ragged-right=##t } \relative c'' { c c c c( | << { c) c c c( } \\ { g g g g } >> c c) c c | } %% -- end of code -- The << \upp