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 = { 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 \new Voice \vocalsIMusic \addlyrics \vocalsILyrics
} }
@ -96,6 +100,7 @@ anonymousStaffVocals = {
\book { \book {
\bookOutputSuffix "accordeon" \bookOutputSuffix "accordeon"
\header { instrument = "Accordeon" } \header { instrument = "Accordeon" }
\paper { ragged-bottom = ##f ragged-last-bottom = ##f }
\score { \score {
\compressMMRests \compressMMRests
<< <<
@ -113,6 +118,7 @@ anonymousStaffVocals = {
\book { \book {
\bookOutputSuffix "cello" \bookOutputSuffix "cello"
\header { instrument = "Cello" } \header { instrument = "Cello" }
%\paper { ragged-bottom = ##f ragged-last-bottom = ##f }
\score { \score {
\compressMMRests \compressMMRests
<< <<
@ -126,6 +132,7 @@ anonymousStaffVocals = {
\book { \book {
\bookOutputSuffix "piano" \bookOutputSuffix "piano"
\header { instrument = "Piano" } \header { instrument = "Piano" }
\paper { ragged-bottom = ##f ragged-last-bottom = ##f }
\score { \score {
\compressMMRests \compressMMRests
<< <<
@ -138,3 +145,17 @@ anonymousStaffVocals = {
\layout {} \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 {}
}
}