Re: slur problem

2014-08-30 Thread Pierre Perol-Schneider
Hi Jay,

2014-08-30 21:54 GMT+02:00 i...@soundand.com:


 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.)
  \bar |.
}

\score {
  \new Staff \horn
  \layout { }
}

HTH,
Pierre
___
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.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


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....

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 \override Slur #'positions = #'(2 . 2)
  d''4( g') g'
}

The values to positions are in staff spaces with 0 being the middle
of the staff if I'm recalling properly.  The 2 for the first value
is likely what the value lilypond is using for that side based on
where the slur is starting.

You can feel free to adjust it a little bit downward if you like since
I'm not sure how high you would like it to be.

-Anthony


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


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,
 
 Something like this override should do the trick:
 
 \version 2.11.52
 {
   \once \override Slur #'positions = #'(2 . 2)
   d''4( g') g'
 }
 
 The values to positions are in staff spaces with 0 being the middle
 of the staff if I'm recalling properly.  The 2 for the first value
 is likely what the value lilypond is using for that side based on
 where the slur is starting.
 
 You can feel free to adjust it a little bit downward if you like since
 I'm not sure how high you would like it to be.
 
 -Anthony
 
 
 ___
 lilypond-user mailing list
 lilypond-user@gnu.org
 http://lists.gnu.org/mailman/listinfo/lilypond-user
 
 

-- 
View this message in context: 
http://www.nabble.com/Slur-Problem-tp18556027p18557173.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


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  \upper \\ \lower  code creates two new voices,
and both \upper and \lower are different from the main voice.
Each voice has its own slurs.

This is the problem. Unfortunately I don't know the solution,
but maybe someone smarter will help you.


  Zoltán




___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


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 = { \override Voice.Fingering #'avoid-slur = #'outside }

strikeStem = { \once \override Stem #'stroke-style = #grace }

fingerSmall = { \override Fingering #'font-size = #-8 }

fingerNeutral = { \revert Fingering #'font-size }

rh = \relative c''
{
\clef treble
\time 4/4
\key g \minor
\partial 4
d4-4~( |
d4 c8 bes \grace { a[ bes c] } bes a) r4 |
r8 \stemUp bes-2( \stemNeutral \times 2/3 { bes-3 a g } fis2-2) |
g4-1( a8 bes \inS c4-1 d8 es |
a,2~ a8. g'16-4 \times 2/3 { g8-5 f es } | \break
\outS d4)-5  { \fingerSmall \strikeStem \grace { d,8-2\( \slurDown 
d-1([ f bes] }
\fingerNeutral \stemDown \times 2/3 { d8) c bes } \stemUp bes a\) 
bes4\rest } \\ { s4
\stemUp \set Voice.tieWaitForNote = ##t \grace { c,8[~ d~ fis]~ } 
\stemDown c d fis4 s }  |
}

\new Staff = { \rh }
%%% -


   Zoltán



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


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 |
}
%% -- end of code --


   /Mats


Zoltan Selyem wrote:


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  \upper \\ \lower  code creates two new voices,
and both \upper and \lower are different from the main voice.
Each voice has its own slurs.

This is the problem. Unfortunately I don't know the solution,
but maybe someone smarter will help you.


 Zoltán




___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user
 




--
=
Mats Bengtsson
Signal Processing
Signals, Sensors and Systems
Royal Institute of Technology
SE-100 44  STOCKHOLM
Sweden
Phone: (+46) 8 790 8463 
   Fax:   (+46) 8 790 7260
Email: [EMAIL PROTECTED]
WWW: http://www.s3.kth.se/~mabe
=



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user