mirror of
				https://github.com/kastdeur/pipeband-music.git
				synced 2025-10-31 02:16:34 +01:00 
			
		
		
		
	New Scores for Kilaloe and the Keel Row
Updated the templates a bit
This commit is contained in:
		
							parent
							
								
									9057c71bcd
								
							
						
					
					
						commit
						0cd17410d9
					
				
					 22 changed files with 755 additions and 102 deletions
				
			
		
							
								
								
									
										37
									
								
								strathspeys/keel_row/bass.ly
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										37
									
								
								strathspeys/keel_row/bass.ly
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,37 @@
 | 
			
		|||
\version "2.18.2"
 | 
			
		||||
 | 
			
		||||
\include "lilydrum.ly"
 | 
			
		||||
 | 
			
		||||
\include "./config.ily"
 | 
			
		||||
\include "./notes.bass.ily"
 | 
			
		||||
 | 
			
		||||
\score {
 | 
			
		||||
    \new PipeBandDrumStaff {
 | 
			
		||||
        \global
 | 
			
		||||
		\bassglobal
 | 
			
		||||
		<<
 | 
			
		||||
			\new NullVoice = "format"
 | 
			
		||||
			{
 | 
			
		||||
				\repeat volta 2 {
 | 
			
		||||
				  	\halfline
 | 
			
		||||
				}
 | 
			
		||||
				\break
 | 
			
		||||
				\repeat volta 2 {
 | 
			
		||||
					\halfline
 | 
			
		||||
				}
 | 
			
		||||
			}%Format
 | 
			
		||||
			\new DrumVoice {
 | 
			
		||||
				\bassA
 | 
			
		||||
 | 
			
		||||
				\bassB
 | 
			
		||||
			}
 | 
			
		||||
		>>
 | 
			
		||||
	}
 | 
			
		||||
	\header {
 | 
			
		||||
		title = \title
 | 
			
		||||
		meter = \meter
 | 
			
		||||
		instrument = \instrumentBass
 | 
			
		||||
		composer = \composerBass
 | 
			
		||||
		arranger = \arrangerBass
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										72
									
								
								strathspeys/keel_row/drums.ly
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								strathspeys/keel_row/drums.ly
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,72 @@
 | 
			
		|||
\version "2.19.0"
 | 
			
		||||
 | 
			
		||||
\include "lilydrum.ly"
 | 
			
		||||
 | 
			
		||||
\include "./config.ily"
 | 
			
		||||
\include "./notes.bass.ily"
 | 
			
		||||
\include "./notes.tenor.ily"
 | 
			
		||||
\include "./notes.side.ily"
 | 
			
		||||
 | 
			
		||||
\score {
 | 
			
		||||
	\new StaffGroup <<
 | 
			
		||||
		\new PipeBandDrumStaff = "side" \with {
 | 
			
		||||
			instrumentName = \markup{ \instrumentSide }
 | 
			
		||||
			shortInstrumentName = \markup{ \shortInstrumentSide }
 | 
			
		||||
		} {
 | 
			
		||||
			\global
 | 
			
		||||
			\sideglobal
 | 
			
		||||
			<<
 | 
			
		||||
				\new NullVoice = "format" {
 | 
			
		||||
					\repeat volta 2 {
 | 
			
		||||
				  		\halfline
 | 
			
		||||
					}
 | 
			
		||||
					\break
 | 
			
		||||
					\repeat volta 2 {
 | 
			
		||||
						\halfline
 | 
			
		||||
					}
 | 
			
		||||
				}%End of Format
 | 
			
		||||
				\new DrumVoice = "side" {
 | 
			
		||||
					\snareA
 | 
			
		||||
 | 
			
		||||
					\snareB
 | 
			
		||||
				}%End of side
 | 
			
		||||
			>>
 | 
			
		||||
		}
 | 
			
		||||
		\new PipeBandDrumStaff = "tenor" \with {
 | 
			
		||||
			instrumentName = \markup{ \instrumentTenor }
 | 
			
		||||
			shortInstrumentName = \markup{ \shortInstrumentTenor }
 | 
			
		||||
		} {
 | 
			
		||||
			\tenorglobal
 | 
			
		||||
 | 
			
		||||
			\tenorA
 | 
			
		||||
 | 
			
		||||
			\tenorB
 | 
			
		||||
		}
 | 
			
		||||
		\new PipeBandDrumStaff = "bass" \with {
 | 
			
		||||
			instrumentName = \markup{ \instrumentBass }
 | 
			
		||||
			shortInstrumentName = \markup{ \shortInstrumentBass}
 | 
			
		||||
		} {
 | 
			
		||||
			\bassglobal
 | 
			
		||||
 | 
			
		||||
			\bassA
 | 
			
		||||
 | 
			
		||||
			\bassB
 | 
			
		||||
		}
 | 
			
		||||
	>>
 | 
			
		||||
	\header {
 | 
			
		||||
		title = \title
 | 
			
		||||
		meter = \meter
 | 
			
		||||
		composer = \markup {
 | 
			
		||||
			\column \right-align {
 | 
			
		||||
				$(if (not (string=? "" composerSide))  #{ \markup {\line { \composerSide  ":" }} #} )
 | 
			
		||||
				$(if (not (string=? "" composerTenor)) #{ \markup {\line { \composerTenor  ":" }} #} )
 | 
			
		||||
				$(if (not (string=? "" composerBass))  #{ \markup {\line { \composerBass  ":" }} #} )
 | 
			
		||||
			}
 | 
			
		||||
			\column \right-align {
 | 
			
		||||
				$(if (not (string=? "" composerSide))  #{ \markup {\line { \instrumentSide }}#} )
 | 
			
		||||
				$(if (not (string=? "" composerTenor)) #{ \markup {\line { \instrumentTenor }}#} )
 | 
			
		||||
				$(if (not (string=? "" composerBass))  #{ \markup {\line { \instrumentBass }}#} )
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										113
									
								
								strathspeys/keel_row/full.ly
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										113
									
								
								strathspeys/keel_row/full.ly
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,113 @@
 | 
			
		|||
\version "2.19.0"
 | 
			
		||||
 | 
			
		||||
\include "bagpipe.ly"
 | 
			
		||||
\include "lilydrum.ly"
 | 
			
		||||
 | 
			
		||||
\include "./config.ily"
 | 
			
		||||
\include "./notes.bass.ily"
 | 
			
		||||
\include "./notes.tenor.ily"
 | 
			
		||||
\include "./notes.side.ily"
 | 
			
		||||
\include "./notes.pipes.ily"
 | 
			
		||||
%\include "./notes.pipes.seconds.ily"
 | 
			
		||||
%\include "./notes.lyrics.ily"
 | 
			
		||||
 | 
			
		||||
\score {
 | 
			
		||||
	\new StaffGroup <<
 | 
			
		||||
		\new Staff \with {
 | 
			
		||||
			instrumentName = \markup{ \instrumentPipes }
 | 
			
		||||
			shortInstrumentName = \markup{ \shortInstrumentPipes }
 | 
			
		||||
		} {
 | 
			
		||||
			\global
 | 
			
		||||
			\pipeglobal
 | 
			
		||||
			<<
 | 
			
		||||
				\new NullVoice = "format" {
 | 
			
		||||
					\repeat volta 2 {
 | 
			
		||||
				  		\halfline
 | 
			
		||||
					}
 | 
			
		||||
					\break
 | 
			
		||||
					\repeat volta 2 {
 | 
			
		||||
						\halfline
 | 
			
		||||
					}
 | 
			
		||||
				}%Format
 | 
			
		||||
 | 
			
		||||
				\new Voice = "pipes" {
 | 
			
		||||
					\pipesA
 | 
			
		||||
 | 
			
		||||
					\pipesB
 | 
			
		||||
				}%Pipes
 | 
			
		||||
			>>
 | 
			
		||||
		}
 | 
			
		||||
%		\new Staff = "song" {
 | 
			
		||||
%  			\lyricsglobal
 | 
			
		||||
%			\new Voice = "lyrics" {
 | 
			
		||||
%
 | 
			
		||||
%			}
 | 
			
		||||
%		}
 | 
			
		||||
%		\new Lyrics = "verse1" {
 | 
			
		||||
%		  \lyricsglobal
 | 
			
		||||
%		  \lyricsto "lyrics" {
 | 
			
		||||
%			\verseA
 | 
			
		||||
%		  }
 | 
			
		||||
%		}
 | 
			
		||||
%		\new Staff = "seconds" \with {
 | 
			
		||||
%			instrumentName = \markup{ \instrumentPipes \instrumentSecnd }
 | 
			
		||||
%			shortInstrumentName = \markup{ \shortInstrumentPipes \shortInstrumentSecnd }
 | 
			
		||||
%		} {
 | 
			
		||||
%			\pipessecndglobal
 | 
			
		||||
%
 | 
			
		||||
%
 | 
			
		||||
%		}
 | 
			
		||||
		\new PipeBandDrumStaff = "side" \with {
 | 
			
		||||
			instrumentName = \markup { \instrumentSide }
 | 
			
		||||
			shortInstrumentName = \markup{ \shortInstrumentSide }
 | 
			
		||||
		} {
 | 
			
		||||
			\sideglobal
 | 
			
		||||
 | 
			
		||||
			\snareA
 | 
			
		||||
 | 
			
		||||
			\snareB
 | 
			
		||||
		}
 | 
			
		||||
		\new PipeBandDrumStaff = "tenor" \with {
 | 
			
		||||
			instrumentName = \markup{ \instrumentTenor }
 | 
			
		||||
			shortInstrumentName = \markup{ \shortInstrumentTenor }
 | 
			
		||||
		} {
 | 
			
		||||
			\tenorglobal
 | 
			
		||||
 | 
			
		||||
			\tenorA
 | 
			
		||||
 | 
			
		||||
			\tenorB
 | 
			
		||||
		}
 | 
			
		||||
		\new PipeBandDrumStaff = "bass" \with {
 | 
			
		||||
			instrumentName = \markup{ \instrumentBass }
 | 
			
		||||
			shortInstrumentName = \markup{ \shortInstrumentBass }
 | 
			
		||||
		} {
 | 
			
		||||
			\bassglobal
 | 
			
		||||
 | 
			
		||||
			\bassA
 | 
			
		||||
 | 
			
		||||
			\bassB
 | 
			
		||||
		}
 | 
			
		||||
	>>
 | 
			
		||||
	\header {
 | 
			
		||||
		title = \title
 | 
			
		||||
		meter = \meter
 | 
			
		||||
		composer = \markup \large {
 | 
			
		||||
			\column \right-align {
 | 
			
		||||
				$(if (not (string=? "" composerLyrics)) #{ \markup { \line { \composerLyrics ":" } } #} )
 | 
			
		||||
				$(if (not (string=? "" composerPipes))  #{ \markup {\line { \composerPipes  ":" }} #} )
 | 
			
		||||
				$(if (not (string=? "" composerPipessecnd))  #{ \markup {\line { \composerPipessecnd ":" }} #} )
 | 
			
		||||
				$(if (not (string=? "" composerSide))  #{ \markup {\line { \composerSide  ":" }} #} )
 | 
			
		||||
				$(if (not (string=? "" composerTenor)) #{ \markup {\line { \composerTenor  ":" }} #} )
 | 
			
		||||
				$(if (not (string=? "" composerBass))  #{ \markup {\line { \composerBass  ":" }} #} )
 | 
			
		||||
			}
 | 
			
		||||
			\column \right-align {
 | 
			
		||||
				$(if (not (string=? "" composerLyrics)) #{ \markup { \line { "Lyrics" } } #} )
 | 
			
		||||
				$(if (not (string=? "" composerPipes))  #{ \markup {\line { \instrumentPipes }}#} )
 | 
			
		||||
				$(if (not (string=? "" composerPipessecnd))  #{ \markup {\line { \instrumentPipessecnd }}#} )
 | 
			
		||||
				$(if (not (string=? "" composerSide))  #{ \markup {\line { \instrumentSide }}#} )
 | 
			
		||||
				$(if (not (string=? "" composerTenor)) #{ \markup {\line { \instrumentTenor }}#} )
 | 
			
		||||
				$(if (not (string=? "" composerBass))  #{ \markup {\line { \instrumentBass }}#} )
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										59
									
								
								strathspeys/keel_row/mid.ly
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										59
									
								
								strathspeys/keel_row/mid.ly
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,59 @@
 | 
			
		|||
\version "2.19.0"
 | 
			
		||||
 | 
			
		||||
\include "lilydrum.ly"
 | 
			
		||||
 | 
			
		||||
\include "./config.ily"
 | 
			
		||||
\include "./notes.bass.ily"
 | 
			
		||||
\include "./notes.tenor.ily"
 | 
			
		||||
 | 
			
		||||
\score {
 | 
			
		||||
	\new StaffGroup <<
 | 
			
		||||
		\new PipeBandDrumStaff = "tenor" \with {
 | 
			
		||||
			instrumentName = \markup{ \instrumentTenor }
 | 
			
		||||
			shortInstrumentName = \markup{ \shortInstrumentTenor }
 | 
			
		||||
		} {
 | 
			
		||||
			\tenorglobal
 | 
			
		||||
			\global
 | 
			
		||||
			<<
 | 
			
		||||
				\new NullVoice = "format"{
 | 
			
		||||
					\repeat volta 2 {
 | 
			
		||||
				  		\halfline
 | 
			
		||||
					}
 | 
			
		||||
					\break
 | 
			
		||||
					\repeat volta 2 {
 | 
			
		||||
						\halfline
 | 
			
		||||
					}
 | 
			
		||||
				}%Format
 | 
			
		||||
				{
 | 
			
		||||
					\tenorA
 | 
			
		||||
 | 
			
		||||
					\tenorB
 | 
			
		||||
				}%Music
 | 
			
		||||
			>>
 | 
			
		||||
		}
 | 
			
		||||
		\new PipeBandDrumStaff = "bass" \with {
 | 
			
		||||
			instrumentName = \markup{ \instrumentBass }
 | 
			
		||||
			shortInstrumentName = \markup{ \shortInstrumentBass }
 | 
			
		||||
		} {
 | 
			
		||||
			\bassglobal
 | 
			
		||||
 | 
			
		||||
			\bassA
 | 
			
		||||
 | 
			
		||||
			\bassB
 | 
			
		||||
		}
 | 
			
		||||
	>>
 | 
			
		||||
	\header {
 | 
			
		||||
		title = \title
 | 
			
		||||
		meter = \meter
 | 
			
		||||
		composer = \markup {
 | 
			
		||||
			\column \right-align {
 | 
			
		||||
				$(if (not (string=? "" composerTenor)) #{ \markup {\line { \composerTenor  ":" }} #} )
 | 
			
		||||
				$(if (not (string=? "" composerBass))  #{ \markup {\line { \composerBass  ":" }} #} )
 | 
			
		||||
			}
 | 
			
		||||
			\column \right-align {
 | 
			
		||||
				$(if (not (string=? "" composerTenor)) #{ \markup {\line { \instrumentTenor }}#} )
 | 
			
		||||
				$(if (not (string=? "" composerBass))  #{ \markup {\line { \instrumentBass }}#} )
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										20
									
								
								strathspeys/keel_row/notes.bass.ily
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								strathspeys/keel_row/notes.bass.ily
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,20 @@
 | 
			
		|||
% 4/4 Keel Row
 | 
			
		||||
% Bass
 | 
			
		||||
\version "2.18.2"
 | 
			
		||||
composerBass  = ""
 | 
			
		||||
arrangerBass  = ""
 | 
			
		||||
bassglobal = {}
 | 
			
		||||
% Music
 | 
			
		||||
bassA = \drummode {
 | 
			
		||||
	d4 r4 d4 r4 |
 | 
			
		||||
	d4 r4 d4 g4 |
 | 
			
		||||
	d4 r4 d4 r4 |
 | 
			
		||||
	d4 g4 d4 d4 |
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
bassB = \drummode {
 | 
			
		||||
	d4 g4 d4 r4 |
 | 
			
		||||
	d4 r4 d4 g4 |
 | 
			
		||||
	d4 g4 d4 r4 |
 | 
			
		||||
	d4 g4 d4 d4 |
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										32
									
								
								strathspeys/keel_row/notes.side.ily
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								strathspeys/keel_row/notes.side.ily
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,32 @@
 | 
			
		|||
% 4/4 Keel Row
 | 
			
		||||
% Side
 | 
			
		||||
\version "2.18.2"
 | 
			
		||||
composerSide = "E.T. de Boone, 2018" %26-09-2018
 | 
			
		||||
arrangerSide = ""
 | 
			
		||||
sideglobal = {
 | 
			
		||||
	\sixteenthBeaming
 | 
			
		||||
}
 | 
			
		||||
% Music
 | 
			
		||||
snareA = \drummode {
 | 
			
		||||
	\flamdr d4 \fr  d8. g16  d4:32->(  g8.)
 | 
			
		||||
	\tutti {
 | 
			
		||||
		d16-\v |
 | 
			
		||||
		\flam g4  d8. g16  \triplet { d8 g d }  \flam d8.
 | 
			
		||||
	}  d16:64( \< |
 | 
			
		||||
	d8.[)\! \dragdr d16] \fr  r8. g16  \triplet { d16 g d g d8 }  \triplet { g8 d g }
 | 
			
		||||
	\tutti {
 | 
			
		||||
		\flamd \triplet { d8 g d-> }  g8. g16  d4:32( d4)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
snareB = \drummode {
 | 
			
		||||
	d16 \flam g8.  g8. d16  g4:32->( g8.)
 | 
			
		||||
	\tutti {
 | 
			
		||||
		d16-\v |
 | 
			
		||||
		\flam g4  d8. g16  \triplet { d8 g d }  \flam d8.
 | 
			
		||||
	}  g16 |
 | 
			
		||||
	\drag d16 d8.  d16[ \drag g8.]  d4:32->(  d8.) g16
 | 
			
		||||
	\tutti {
 | 
			
		||||
		\flamd \triplet { d8 g d-> }  g8. g16  d4:32( d4)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										20
									
								
								strathspeys/keel_row/notes.tenor.ily
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								strathspeys/keel_row/notes.tenor.ily
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,20 @@
 | 
			
		|||
% 4/4 Keel Row
 | 
			
		||||
% Tenor
 | 
			
		||||
\version "2.18.2"
 | 
			
		||||
composerTenor = ""
 | 
			
		||||
arrangerTenor = ""
 | 
			
		||||
tenorglobal = {}
 | 
			
		||||
% Music
 | 
			
		||||
tenorA = \drummode {
 | 
			
		||||
	d4 g4 d4 r4 |
 | 
			
		||||
	d8.-> g16  d8. d16  g8.-> d16 g4 |
 | 
			
		||||
	d4 g4 d4 r4 |
 | 
			
		||||
	d4 g4 d8. g16 d4 |
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
tenorB = \drummode {
 | 
			
		||||
	r4 r4 d4 g4  |
 | 
			
		||||
	d8.-> g16  d8. d16  g8.-> d16 g4 |
 | 
			
		||||
	r4 r4 d4 g4 |
 | 
			
		||||
	d4 g4 d8. g16 d4 |
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										37
									
								
								strathspeys/keel_row/side.ly
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										37
									
								
								strathspeys/keel_row/side.ly
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,37 @@
 | 
			
		|||
\version "2.18.2"
 | 
			
		||||
 | 
			
		||||
\include "lilydrum.ly"
 | 
			
		||||
 | 
			
		||||
\include "./config.ily"
 | 
			
		||||
\include "./notes.side.ily"
 | 
			
		||||
 | 
			
		||||
\score {
 | 
			
		||||
    \new PipeBandDrumStaff {
 | 
			
		||||
        \global
 | 
			
		||||
		\sideglobal
 | 
			
		||||
		<<
 | 
			
		||||
			\new NullVoice = "format" {
 | 
			
		||||
				\repeat volta 2 {
 | 
			
		||||
				  	\halfline
 | 
			
		||||
				}
 | 
			
		||||
				\break
 | 
			
		||||
				\repeat volta 2 {
 | 
			
		||||
					\halfline
 | 
			
		||||
				}
 | 
			
		||||
			}%Format
 | 
			
		||||
 | 
			
		||||
			\new DrumVoice = "side" {
 | 
			
		||||
				\snareA
 | 
			
		||||
 | 
			
		||||
				\snareB
 | 
			
		||||
			}
 | 
			
		||||
		>>
 | 
			
		||||
	}
 | 
			
		||||
	\header {
 | 
			
		||||
		title = \title
 | 
			
		||||
		meter = \meter
 | 
			
		||||
		instrument = \instrumentSide
 | 
			
		||||
		composer = \composerSide
 | 
			
		||||
		arranger = \arrangerSide
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										37
									
								
								strathspeys/keel_row/tenor.ly
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										37
									
								
								strathspeys/keel_row/tenor.ly
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,37 @@
 | 
			
		|||
\version "2.18.2"
 | 
			
		||||
 | 
			
		||||
\include "lilydrum.ly"
 | 
			
		||||
 | 
			
		||||
\include "./config.ily"
 | 
			
		||||
\include "./notes.tenor.ily"
 | 
			
		||||
 | 
			
		||||
\score {
 | 
			
		||||
    \new PipeBandDrumStaff {
 | 
			
		||||
		\global
 | 
			
		||||
		\tenorglobal
 | 
			
		||||
		<<
 | 
			
		||||
			\new NullVoice = "format" {
 | 
			
		||||
				\repeat volta 2 {
 | 
			
		||||
				  	\halfline
 | 
			
		||||
				}
 | 
			
		||||
				\break
 | 
			
		||||
				\repeat volta 2 {
 | 
			
		||||
					\halfline
 | 
			
		||||
				}
 | 
			
		||||
			}%Format
 | 
			
		||||
 | 
			
		||||
			\new DrumVoice = "tenor" {
 | 
			
		||||
				\tenorA
 | 
			
		||||
 | 
			
		||||
				\tenorB
 | 
			
		||||
			}
 | 
			
		||||
		>>
 | 
			
		||||
	}
 | 
			
		||||
	\header {
 | 
			
		||||
		title = \title
 | 
			
		||||
		meter = \meter
 | 
			
		||||
		instrument = \instrumentTenor
 | 
			
		||||
		composer = \composerTenor
 | 
			
		||||
		arranger = \arrangerTenor
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue