Re: Slurs collision with note heads

2016-05-04 Thread Flaming Hakama by Elaine
> >Hello!
> >
> >I'm not very experienced user of lilypond and I would like to ask you for
> >help. In this example I have a rather ugly slurs collision with noteheads:
>

As Carl pointed out, this is really Tie collisions with Stems.

The tweaks to ties are described in
http://lilypond.org/doc/v2.19/Documentation/notation/modifying-shapes#modifying-ties-and-slurs

I had to rearrange how the voices are specified since many other commands
like \stemUp and \shape don't seem to work in << >> constructs.


\version "2.19.40"

\new Staff {
\clef bass
\time 3/4
<<
{ \stemDown c'2.-\shape #'((0 . 0.5) (-0.5 . 1) (0.5 . 1) (0 . 0.2)) ~
c'2.-\shape #'((0 . 0.2) (-0.5 . 1) (0.5 . 1) (0 . 0)) ~ c'2. } \\
{ \stemDown d2. ~ d2. ~ d2. } \\
{ as4 g f | g as b | as g2 }
>>
}



HTH,

David Elaine Alt
415 . 341 .4954   "*Confusion is
highly underrated*"
ela...@flaminghakama.com
self-immolation.info
skype: flaming_hakama
Producer ~ Composer ~ Instrumentalist
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Slurs collision with note heads

2016-05-04 Thread Simon Albrecht

On 04.05.2016 20:18, N.S. wrote:

There is «still a collision between the tie and a couple of stems».
I was trying to find some advice in Lilypond manual, and as far as I 
know there is a whiteout property for such cases,


Such intersections of stems and ties/slurs are pretty common and I don’t 
see any need to use whiteout here. It’s a bit of a visual distraction.


but I don't know how to use it for stems. Probably you can give an 
example?


Sure:



\version "2.19.39"

\new Staff {
  \clef bass
  \time 3/4
  <<
{
  as4 g f |
  g as b |
  as g2
}
\\
{
  2.
  
  
}
  >>
}

\layout {
  \context {
\Voice
\override Stem.layer = -2
\override Tie.layer = -3
\override Stem.whiteout = 1
  }
}

%%%

Best, Simon

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


Re[2]: Slurs collision with note heads

2016-05-04 Thread N . S .

Thank you very much, Carl! Of course, I've just misused the term «slur».

Anyway, as you wrote, there is «still a collision between the tie and a couple 
of stems». 
I was trying to find some advice in Lilypond manual, and as far as I know there 
is a whiteout property for such cases, but I don't know how to use it for 
stems. Probably you can give an example?
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Slurs collision with note heads

2016-05-04 Thread Carl Sorensen
HI

On 5/4/16 9:25 AM, "N.S."  wrote:

>
>Hello!
>
>I'm not very experienced user of lilypond and I would like to ask you for
>help. In this example I have a rather ugly slurs collision with noteheads:
>
>

Nikita,

The objects that are colliding with the note heads are ties, not slurs.
This is important to future use.

For this particular case, just make the lower tie point down, by moving
the tie request inside the chord brackets.

\version "2.19.40"

\new Staff {
\clef bass
\time 3/4
<< { as4 g f | g as b | as g2 } \\ { 2.   } >> }


There's still a collision between the tie and a couple of stems in the
upper voice, but I think it solves the worst of the collisions.

Good luck in learning LilyPond!

Carl


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


Slurs collision with note heads

2016-05-04 Thread N . S .
 Hello!

I'm not very experienced user of lilypond and I would like to ask you for help. 
In this example I have a rather ugly slurs collision with noteheads:

\version "2.19.40"

\new Staff {
\clef bass
\time 3/4
<< { as4 g f | g as b | as g2 } \\ { 2.^~ ^~  } >> }

How can I modify the output?

Many thanks in advance!


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