Re: How to make slurs ignore stems?

2011-12-22 Thread Jakub Pavlík
Thank you both, David and James.
J

>  Původní zpráva 
> Od: David Nalesnik 
> Předmět: Re: How to make slurs ignore stems?
> Datum: 22.12.2011 20:44:59
> 
> Hi Jakub,
> 
> 2011/12/22 Jakub Pavlík 
> 
> > In regular modern scores it is logical that the ends of a slur attach to a
> > notehead or to an end of a stem, depending on the direction of stems of the
> > notes connected by the slur.
> >
> > I'm typesetting chant transcriptions and make stems transparent:
> > \override Stem #'transparent = ##t
> > Some slurs, attached to invisible stems, then "fly high over the notes".
> >
> > Is there any way to tell LilyPond to ignore stems when making slurs and
> > attach slur always to noteheads?
> 
> 
> There are probably better ways to go about this, but this seems to work:
> 
> \version "2.15.16"
> 
> \relative c'' {
>   \override Stem #'transparent = ##t
>   \override Stem #'Y-extent = ##f
>   c( a g)
> }
> 
> -David
> 
> 
> 

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


Re: How to make slurs ignore stems?

2011-12-22 Thread David Nalesnik
Hi again,

2011/12/22 David Nalesnik 

>
> There are probably better ways to go about this, but this seems to work:
>
>
Here's another way:

 \relative c'' {
  \override Stem #'transparent = ##t
  \stemDown
  c( a g)
}

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


Re: How to make slurs ignore stems?

2011-12-22 Thread James
Hello,

2011/12/22 Jakub Pavlík :
> In regular modern scores it is logical that the ends of a slur attach to a 
> notehead or to an end of a stem, depending on the direction of stems of the 
> notes connected by the slur.
>
> I'm typesetting chant transcriptions and make stems transparent:
> \override Stem #'transparent = ##t
> Some slurs, attached to invisible stems, then "fly high over the notes".
>
> Is there any way to tell LilyPond to ignore stems when making slurs and 
> attach slur always to noteheads?

\version "2.14.1"

music = \relative c' {
\override Stem #'stencil = #point-stencil
\override Beam #'stencil = #point-stencil
 a'8( b c d) e( f g) a( | a,) b c( d e f g a)
}

\score {
  \music
}

This help?

http://lilypond.org/doc/v2.14/Documentation/learning/visibility-and-color-of-objects

'stencil'



-- 
--

James

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


Re: How to make slurs ignore stems?

2011-12-22 Thread David Nalesnik
Hi Jakub,

2011/12/22 Jakub Pavlík 

> In regular modern scores it is logical that the ends of a slur attach to a
> notehead or to an end of a stem, depending on the direction of stems of the
> notes connected by the slur.
>
> I'm typesetting chant transcriptions and make stems transparent:
> \override Stem #'transparent = ##t
> Some slurs, attached to invisible stems, then "fly high over the notes".
>
> Is there any way to tell LilyPond to ignore stems when making slurs and
> attach slur always to noteheads?


There are probably better ways to go about this, but this seems to work:

\version "2.15.16"

\relative c'' {
  \override Stem #'transparent = ##t
  \override Stem #'Y-extent = ##f
  c( a g)
}

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