On 16.09.2015 12:43, Erich Neuwirth wrote:
%% I need a tie between the second note of the first triplet and the first note 
of the second triplet,
%% and I need the notehead of the d (upper note at first position) to be a half 
note.
%% superimposing the half note and the triplet note gives the full head, not 
the hollow head.
%% Can this be accomplished also.

%% And thanls for the great help  am getting here.


%%%%%%%%%%%%%%%%%%%%%%%%%%
\version "2.19.27"

lower = \relative c' {
  \clef bass
  \key g \major
  \time 2/4
   << {\tuplet 3/2 {d,8 b' g'} \tuplet 3/2 {b,8 b g'}}\\
The following line should get a pair of {} to make the different items sequential, not simultaneous:
{ \shiftOnn \override NoteColumn.force-hshift = -0.5 <d, g,>2 }
It may work with simultaneous music ( << >> ) in this specific case, but you’ll be better off, have more legible code and fare safer using {}.

    \shiftOnn \override NoteColumn.force-hshift = -0.5 <d, g,>2  >>
}



\score {
  <<
Whereas the following would not need any braces around \lower.

Yours, Simon

_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to