1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-10-31 02:16:34 +01:00

Fixed missing instrumentNames in template

This commit is contained in:
Eric Teunis de Boone 2017-05-04 23:00:05 +02:00
parent c78c8cfef7
commit 30523d7b9a
5 changed files with 54 additions and 42 deletions

View file

@ -9,11 +9,12 @@
\score {
\new StaffGroup <<
\new Staff = "pipes" {
\new Staff = "pipes" \with{
instrumentName = \markup{ \instrumentPipes }
shortInstrumentName = \markup{ \shortInstrumentPipes }
} {
\global
\pipeglobal
\set Staff.instrumentName = \markup{ \instrumentPipes }
\set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes }
<<
\new NullVoice = "format" {
@ -23,16 +24,18 @@
}%Pipes
>>
}
\new Staff = "seconds" {
\new Staff = "seconds" \with {
instrumentName = \markup{ \instrumentPipes \instrumentSecnd }
shortInstrumentName = \markup{ \shortInstrumentPipes \shortInstrumentSecnd}
} {
\pipessecndglobal
\set Staff.instrumentName = \markup{ \instrumentSecnd }
\set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes \shortInstrumentSecnd}
}
% \new Staff = "thirds" {
% \new Staff = "thirds" \with {
% instrumentName = \markup{ \instrumentPipes \instrumentThrd }
% shortInstrumentName = \markup{ \shortInstrumentPipes \shortInstrumentThrd}
% } {
% \pipesthrdglobal
% \set Staff.instrumentName = \markup{ \instrumentPipes \instrumentThrd }
% \set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes \shortInstrumentThrd }
%
% }
>>