Improve part scores, add vocal part score

This commit is contained in:
Midgard 2020-10-04 00:25:35 +02:00
parent 905e876eb8
commit 6a5bed8355
Signed by: midgard
GPG key ID: 511C112F1331BBB4

View file

@ -35,7 +35,11 @@ stub = {
anonymousStaffVocals = {
\new Staff \with { instrumentName = "Zang" midiInstrument = "Alto Sax" }
\new Staff \with {
instrumentName = "Zang"
% No MIDI instrument
\magnifyStaff #2/3
}
\new Voice \vocalsIMusic \addlyrics \vocalsILyrics
}
@ -96,6 +100,7 @@ anonymousStaffVocals = {
\book {
\bookOutputSuffix "accordeon"
\header { instrument = "Accordeon" }
\paper { ragged-bottom = ##f ragged-last-bottom = ##f }
\score {
\compressMMRests
<<
@ -113,6 +118,7 @@ anonymousStaffVocals = {
\book {
\bookOutputSuffix "cello"
\header { instrument = "Cello" }
%\paper { ragged-bottom = ##f ragged-last-bottom = ##f }
\score {
\compressMMRests
<<
@ -126,6 +132,7 @@ anonymousStaffVocals = {
\book {
\bookOutputSuffix "piano"
\header { instrument = "Piano" }
\paper { ragged-bottom = ##f ragged-last-bottom = ##f }
\score {
\compressMMRests
<<
@ -138,3 +145,17 @@ anonymousStaffVocals = {
\layout {}
}
}
\book {
\bookOutputSuffix "vocals"
\header { instrument = "Zang" }
\paper { ragged-bottom = ##f ragged-last-bottom = ##f }
\score {
\compressMMRests
<<
\new Staff \with { instrumentName = "Zang" midiInstrument = "Alto Sax" }
\new Voice \vocalsIMusic \addlyrics \vocalsILyrics
>>
\layout {}
}
}