glissandi for chords

2007-07-22 Thread Siska Ádám

Hello Everyone,


one more question: how can I make double-glissandi? I have to connect 
two chords with glissando lines, but if I put


a e'16 \glissando h fis'

I only get one line between the e and fis, instead of getting two lines 
(one between a and h and another between e and fis). How could I correct 
this?



Thank you,
Adam




Siska Ádám
+36 (70) 207-63-85
http://apocalypse.rulez.org/~sadam


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


Re: glissandi for chords

2007-07-22 Thread Neil Puttock

Hi Adam,

On 7/22/07, Siska Ádám [EMAIL PROTECTED] wrote:


Hello Everyone,


one more question: how can I make double-glissandi?



Create another voice, then you can attach a glissando to it:

 {  % New voice ( = \voiceOne) without stems or beams

   \override Stem #'stencil = ##f
   \override Beam #'stencil = ##f

   % Attach glissando to noteheads
   e8 \glissando fis

   } \\ { % Original voice with chords rearranged so that glissando is
attached to a  b
   e a, \glissando fis h,
   } 

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


Re: glissandi for chords

2007-07-22 Thread Siska Ádám

Hi Neil,


thanks, this helped a lot.

Bye,
Adam

P.S. I used \hideNotes and \unHideNotes instead of the overrides, as I 
had some problems with some dotted chords.



Siska Ádám
+36 (70) 207-63-85
http://apocalypse.rulez.org/~sadam


Neil Puttock wrote:

Hi Adam,

On 7/22/07, *Siska Ádám* [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED] wrote:


Hello Everyone,


one more question: how can I make double-glissandi?


Create another voice, then you can attach a glissando to it:

 {  % New voice ( = \voiceOne) without stems or beams
 
\override Stem #'stencil = ##f

\override Beam #'stencil = ##f

% Attach glissando to noteheads
e8 \glissando fis
 
} \\ { % Original voice with chords rearranged so that glissando 
is attached to a  b

e a, \glissando fis h,
} 

Regards,
Neil 



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


Re: glissandi for chords

2007-07-22 Thread Valentin Villenave

2007/7/22, Siska Ádám [EMAIL PROTECTED]:


P.S. I used \hideNotes and \unHideNotes instead of the overrides, as I
had some problems with some dotted chords.


I added it to the LSR; can you please post your code here (if you
think it's simpler) so I can correct the snippet?

http://lsr.dsi.unimi.it/LSR/Item?id=303

V.Villenave


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


Re: glissandi for chords

2007-07-22 Thread Siska Ádám

Hello,


that's it:

{\clef bass
 \new Voice {
 \hideNotes
 % Attach glissando to noteheads
 e8 \glissando fis
 \unHideNotes
   } {
 % Original voice with chords rearranged so that glissando is 
attached to a  b

 e a, \glissando fis b,
 }  }


hope this helps,
Adam

P.S. I found this better as in my original score I have dotted chords, 
and the dot positioning was better if I managed to do it this way.



Siska Ádám
+36 (70) 207-63-85
http://apocalypse.rulez.org/~sadam


Valentin Villenave wrote:

2007/7/22, Siska Ádám [EMAIL PROTECTED]:


P.S. I used \hideNotes and \unHideNotes instead of the overrides, as I
had some problems with some dotted chords.


I added it to the LSR; can you please post your code here (if you
think it's simpler) so I can correct the snippet?

http://lsr.dsi.unimi.it/LSR/Item?id=303

V.Villenave




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