Dear all,

in Mendelssohn Bartholdy's 100th psalm, the middle part is for eight
voices while the outer parts are only for four voices. When I define
soprano voice 1 and 2 for one staff at the beginning with voiceOne and
voiceTwo, the stems and pauses for the one soprano voice are optically
unpleasing. I would like to have the effect of \voiceOne resp. \voiceTwo
only for the middle part. How to achieve this?

Thanks a lot and stay healthy and democratic!


-- 
spitzhalde9
D-79853 lenzkirch
bernhard.kle...@gmx.net
www.b-kleine.com, www.urseetal.net
Ich darf auch auf mein neues Buch "Falter in Lenzkirch" aufmerksam machen 
(Infos bei mir)
-
thunderbird mit enigmail
GPG schlüssel: D5257409
fingerprint:
08 B7 F8 70 22 7A FC C1 15 49 CA A6 C7 6F A0 2E D5 25 74 09

\version "2.19.82"
\language "deutsch"

\header {
  title = "Der 100. Psalm"
  composer = "Felix Mendelssohn Barthody"
  tagline = "Bermhard Kleine 2020"
}

\paper {
  #(set-paper-size "a4")
}

\layout {
  \context {
    \Voice
    \consists "Melody_engraver"
    \override Stem #'neutral-direction = #'()
  }
 }

global = {
  \key c \major
  \time 4/4
  \autoBeamOff
}

SopranoVoiceI = \relative c'' {
  \global
  \dynamicUp
  g2\f g4 g | c2 c4 d | e1\fermata 
}

VerseSopranoVoiceI = \lyricmode {
  Jauch -- zet dem Herrn al -- le Welt!   
}

SopranoVoiceII = \relative c'' {
  \global
  \dynamicUp
  % Die Noten folgen hier.
  s1*3
}

VerseSopranoVoiceII = \lyricmode {
  % Liedtext folgt hier.
  
}

AltoVoiceI = \relative c' {
  \global
  \dynamicUp
  % Die Noten folgen hier.
  e2 e4 f | g2 g4 g | c1\fermata 
}

VerseAltoVoiceI = \lyricmode {
  % Liedtext folgt hier.
  Jauch -- zet dem Herrn al -- le Welt! 
}

AltoVoiceII = \relative c' {
  \global
  \dynamicUp
  s1*3
  
}

VerseAltoVoiceII = \lyricmode {
  % Liedtext folgt hier.
  
}


Soprano = \new Staff \with {
  instrumentName = "Sopran"
} <<
  \new Voice = "SI" { \voiceOne \SopranoVoiceI }
  \new Voice = "SII" { \voiceTwo \SopranoVoiceII }
  >>
  \addlyrics { \VerseSopranoVoiceI }

Alto = \new Staff \with {
  instrumentName = "Alt"
} <<
  \new Voice = "AI" { \voiceOne \AltoVoiceI }
  \new Voice = "AIi" { \voiceTwo \AltoVoiceII }
  >>
  \addlyrics { \VerseAltoVoiceI }


\score {
  <<
    \Soprano
    \Alto
  >>
  \layout { }
}

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to