Re: Solved: (Was Re: Differently headed does not merge.)

2014-11-14 Thread Peter Terpstra
Phil Burfitt wrote:

> If you want to achieve this there's also a quicker way

> [...]

Very nice, thank you!


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


Re: Solved: (Was Re: Differently headed does not merge.)

2014-11-13 Thread Phil Burfitt
  - Original Message - 
  From: Pierre Perol-Schneider 
  To: Peter Terpstra 
  Cc: lilypond-user 
  Sent: Thursday, November 13, 2014 1:03 PM
  Subject: Re: Solved: (Was Re: Differently headed does not merge.)


  Hi Peter,



  2014-11-13 13:47 GMT+01:00 Peter Terpstra :



Have solved it a bit like this, as i had already defined the voice, just 
gave a limited example.
Just looks wonderful now!



  If you want to achieve this there's also a quicker way :

  \version "2.18.2"

  {
\key d \major
\clef "treble_8"
<<
  { 2 ~ q8 8   }\\
  {
   \tweak duration-log #1 d,8 a,   b2
  }
>>
  }


  Cheers,
  Pierre





--


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




Or maybe (clearer outout in MHO)...

\version "2.18.2"

{

\key d \major

\clef "treble_8"

<<

{ 2 ~ q8 8   }\\

{ d,2*1/4 a,8   b2 }

>>

}







Phil.


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


Re: Solved: (Was Re: Differently headed does not merge.)

2014-11-13 Thread Pierre Perol-Schneider
Hi Peter,

2014-11-13 13:47 GMT+01:00 Peter Terpstra :


> Have solved it a bit like this, as i had already defined the voice, just
> gave a limited example.
> Just looks wonderful now!
>

If you want to achieve this there's also a quicker way :

\version "2.18.2"

{
  \key d \major
  \clef "treble_8"
  <<
{ 2 ~ q8 8   }\\
{
 \tweak duration-log #1 d,8 a,   b2
}
  >>
}

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


Solved: (Was Re: Differently headed does not merge.)

2014-11-13 Thread Peter Terpstra
Peter Terpstra wrote:

> Differently headed does not merge.

Thank you so much for your answers, very useful!!

Have solved it a bit like this, as i had already defined the voice, just gave a 
limited example.
Just looks wonderful now!

\version "2.18.2"
% here's how I'd did:
{
  \key d \major
  \clef "treble_8"
  <<
   \voiceOne { 2 ~ q8 8   }\\
\voiceFour {
  % \set fingeringOrientations = #'(left)
  \once \override NoteColumn.force-hshift = #0
  \tweak NoteHead.stencil ##f
  d,8 a,   s2
}\\
\voiceTwo { d,2 b }
  >>
}


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