Bernhard Kleine wrote Sunday, November 02, 2014 12:02 PM

> When I try to move the tenor text above the staff I fail. I have read the 
> manual pages, but it does not work. What to change?
>
> I have tested the following piece and it compiles, however, not with the 
> result I want.

Almost right, but you have confused two possible ways, using part of one and 
part of the other.  I'd name the men's staff and use alignAboveContext = "Men", 
like this:

\version "2.19.15"
\language "deutsch"
global = {
\key c \major
\time 3/4
}
tenorTwo = \relative c' {
\global \dynamicUp
s2.| c2 c4|
}
bassTwo = \relative c' {
\global
a2 a4| a g f | e cis e | a ( g) f| e fis d4\rest
}
verseTenor = \lyricmode {
A -- gnus De -- i qui tol -- lis pec -- ca -- ta mun -- di
}
verseBasso = \lyricmode {
A -- gnus De -- i qui tol -- lis pec -- ca -- ta mun -- di
A -- gnus De -- i qui tol -- lis pec -- ca -- ta mun-- di
}
choirPart = \new ChoirStaff <<
\new Staff = "Men" \with {
midiInstrument = "choir aahs"
instrumentName = \markup \center-column { "Tenor" "Bass" }
} <<
\clef bass
\new Voice = "tenorTwo" { \voiceThree \tenorTwo }
\new Voice = "bassTwo" { \voiceFour \bassTwo }
>>
\new Lyrics \with {
alignAboveContext = "Men"
} \lyricsto "tenorTwo" \verseTenor
\new Lyrics \with { }
\lyricsto "bassTwo" \verseBasso
>>
\score {
<<
\choirPart
>>
\layout { }
\midi {
\tempo 4=100
}
}

This is the first option in 
http://www.lilypond.org/doc/v2.19/Documentation/notation/techniques-specific-to-lyrics#placing-lyrics-vertically

Trevor

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

Reply via email to