Re: Consecutive slurs with differing dash patterns

2016-07-08 Thread Andrew Bernard
Thank you all for your excellent solutions. Most helpful.

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


Re: Consecutive slurs with differing dash patterns

2016-07-08 Thread Jean Brefort
Le vendredi 08 juillet 2016 à 07:51 -0700, Andrew Bernard a écrit :
> Consider this example:
> 
> \version "2.19.44"
> 
> {
>   \phrasingSlurDashed
>   c''4^\( c'' c''\)^\( c'' c''\)
> }
> 
> How would one get the second phrasing slur to be solid, not dashed? I
> cannot simply place \phrasingSlurSolid between the end of the first
> slur and and start of the second. This case arises for me a lot.
> 
> Andrew
> 
> 
> 
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user

Try:

\version "2.19.44"> 

{
   \once \phrasingSlurDashed
   c''4^\( c'' c''\)^\( c'' c''\)
}

Regards,
Jean

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


Re: Consecutive slurs with differing dash patterns

2016-07-08 Thread David Kastrup
Andrew Bernard  writes:

> Consider this example:
>
> \version "2.19.44"
>
> {
>   \phrasingSlurDashed
>   c''4^\( c'' c''\)^\( c'' c''\)
> }
>
> How would one get the second phrasing slur to be solid, not dashed? I
> cannot simply place \phrasingSlurSolid between the end of the first slur
> and and start of the second. This case arises for me a lot.

Convert the dashiness to a tweak:

\version "2.19.44"

{
  c''4^\single \phrasingSlurDashed \( c'' c''\)^\( c'' c''\)
}

-- 
David Kastrup

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


Re: Consecutive slurs with differing dash patterns

2016-07-08 Thread tisimst
On Fri, Jul 8, 2016 at 9:11 AM, Urs Liska [via Lilypond] <
ml-node+s1069038n192396...@n5.nabble.com> wrote:

>
>
> Am 8. Juli 2016 16:51:14 MESZ, schrieb Andrew Bernard <[hidden email]
> <http:///user/SendEmail.jtp?type=node=192396=0>>:
>
> >Consider this example:
> >
> >\version "2.19.44"
> >
> >{
> >  \phrasingSlurDashed
> >  c''4^\( c'' c''\)^\( c'' c''\)
> >}
> >
> >How would one get the second phrasing slur to be solid, not dashed? I
> >cannot simply place \phrasingSlurSolid between the end of the first
> >slur
> >and and start of the second.
>
> Why not?
> Can't you put the command before the first on *stops*?
>

Beat me to it. Like this:

{
  \phrasingSlurDashed
  c''4^\( c'' \phrasingSlurSolid c''\)^\( c'' c''\)
}

Not like this, because it has already begun (being attached to the previous
note, but this applies it to the next one where there is no PhrasingSlur):

{
  \phrasingSlurDashed
  c''4^\( c'' c''\) \phrasingSlurSolid ^\( c'' c''\)
}

Best,
Abraham




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Consecutive-slurs-with-differing-dash-patterns-tp192393p192399.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: Consecutive slurs with differing dash patterns

2016-07-08 Thread Urs Liska


Am 8. Juli 2016 16:51:14 MESZ, schrieb Andrew Bernard 
:
>Consider this example:
>
>\version "2.19.44"
>
>{
>  \phrasingSlurDashed
>  c''4^\( c'' c''\)^\( c'' c''\)
>}
>
>How would one get the second phrasing slur to be solid, not dashed? I
>cannot simply place \phrasingSlurSolid between the end of the first
>slur
>and and start of the second. 

Why not?
Can't you put the command before the first on *stops*?


>This case arises for me a lot.
>
>Andrew
>
>
>
>
>___
>lilypond-user mailing list
>lilypond-user@gnu.org
>https://lists.gnu.org/mailman/listinfo/lilypond-user

-- 
Diese Nachricht wurde von meinem Android-Mobiltelefon mit K-9 Mail gesendet.

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


Re: Consecutive slurs with differing dash patterns

2016-07-08 Thread Thomas Morley
2016-07-08 16:51 GMT+02:00 Andrew Bernard :
> Consider this example:
>
> \version "2.19.44"
>
> {
>   \phrasingSlurDashed
>   c''4^\( c'' c''\)^\( c'' c''\)
> }
>
> How would one get the second phrasing slur to be solid, not dashed? I cannot
> simply place \phrasingSlurSolid between the end of the first slur and and
> start of the second. This case arises for me a lot.
>
> Andrew


How about:

\version "2.19.44"

solidPS =
\tweak dash-definition #'() \etc

{
  \phrasingSlurDashed
  c''4^\( c'' c''\)^\solidPS -\( c'' c''\)
}

HTH,
  Harm

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


Consecutive slurs with differing dash patterns

2016-07-08 Thread Andrew Bernard
Consider this example:

\version "2.19.44"

{
  \phrasingSlurDashed
  c''4^\( c'' c''\)^\( c'' c''\)
}

How would one get the second phrasing slur to be solid, not dashed? I
cannot simply place \phrasingSlurSolid between the end of the first slur
and and start of the second. This case arises for me a lot.

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