• Willkommen im Forum „Archiviertes Lilypond Forum (2017)“.
 

Dies ist das Archiv des alten Forums (bis März 2017). Das aktuelle Forum ist unter lilypondforum.de zu finden.
This is the archive of the old forum (until March 2017). You can find the current forum at lilypondforum.de.

Hauptmenü

Sopran und Alt sowie Tenor und Bass zusammenfügen

Begonnen von weichold, Samstag, 2. Juli 2016, 15:52

Vorheriges Thema - Nächstes Thema

weichold

Hallo ich möchte gerne, dass Sopran und Alt sowie Tenor und Bass sich jeweils eine Notenzeile teilen? Wie mache ich das?

ingmar

grundsätzlich so wie unten - aber was ist denn dein Problem dabei?

--ingmar
\version "2.19.37"

sopranmusic = \relative c'' { c8 c c c c c c c}
altmusic    = \relative c'' { g4 g g g}
tenormusic  = \relative c' { e2 e2 }
bassmusic   = \relative c { c4 g c2 }

\score {
\new StaffGroup <<
\new Staff \with { instrumentName = "Soprano / Alto" } {
\clef "violin" <<
\new Voice {
\voiceOne
\sopranmusic
}
\new Voice {
\voiceTwo
\altmusic
}
>>
}
\new Staff \with { instrumentName = "Tenore / Basso" } {
\clef "violin_8" <<
\new Voice {
\voiceThree
\tenormusic
}
\new Voice {
\voiceFour
\bassmusic
}
>>
}
>>
}