lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Reversing order of colliding noteheads?


From: Stephen MacNeil
Subject: RE: Reversing order of colliding noteheads?
Date: Fri, 29 Jan 2016 00:11:55 -0500

How about


%%%%%%%%%%%%%%%%%%


\version "2.18.2"




timeKey = {


\key c \major

\time 4/4


}


tenorPart = {


\voiceOne

r2 e'8

\shape #'((0 . 0) (0 . 0.8) (0 . 0.8) (0 . 0.1)) Tie

c'4. ~ |

\once \override Voice.NoteColumn.force-hshift = #.6


c'4. r8 f'2 |


}


leadPart = {


\voiceTwo

e'2 c'2 |


d'2 a2 |


}


tenorWords = \lyricmode {


My girl

Oo


}


leadWords = \lyricmode {


Hold me, Love me


}


\bookpart { \score {


\new ChoirStaff \with {

systemStartDelimiter = #'SystemStartBar

} <<


\new Lyrics = "tenorLyrics" \with {

alignAboveContext = "staff"

\override VerticalAxisGroup.staff-affinity = #DOWN

}


\new Staff = "tenorlead" { << { \timeKey \clef "treble_8" }

\new Voice = "tenor" { <<

{ \tenorPart \bar "|." }

>> }


\new Voice = "lead" { <<

{ \leadPart \bar "|." }

>> }


>> }


\new Lyrics = "leadLyrics"

\context Lyrics = "tenorLyrics" \lyricsto "tenor" \tenorWords

\context Lyrics = "leadLyrics" \lyricsto "lead" \leadWords


>>


} }


%%%%%%%%%%%


Stephen


reply via email to

[Prev in Thread] Current Thread [Next in Thread]