

#(define mydrums '(
                    ( ridecymbal    	cross    #f   		5)	
                    ( cowbell   		triangle #f   		5)
                    ( ridecymbala   	xcircle  #f   		5)
                    ( crashcymbal   	cross  	 #f   		6)	
                    ( chinesecymbal  	xcircle  #f   		7)
                    ( splashcymbal  	harmonic #f   		7)
                    ( pedalhihat    	cross    #f  		-5)	
                    ( hihat         	cross    #f   		3)
					( halfopenhihat   	cross    "halfopen" 3)
					( openhihat   		cross    "open"   	3)
					( closedhihat   	cross    "stopped" 	3)
                    ( snare         	default  #f   		1)	
                    ( sidestick     	cross    #f   		1)
                    ( hightom     		default  #f   		3)	
                    ( lowmidtom     	default  #f   		2)	
                    ( highfloortom     	default  #f   		-1)	
                    ( lowfloortom     	default  #f   		-2)	
                    ( bassdrum      	default  #f  		-3)
                    ( acousticbassdrum  default  #f  		-4)
				)
)




% ===================================
% Layout modifications
% ===================================
\layout
{
	\teeny	% - Set the default font size
}



% ===================================
% Key for the metal work
% ===================================

\score { 
<< 
	\new DrumStaff 
	<<
		% ====================
		% Options
		% ====================

		% Use the drumkit defined above
		\set DrumStaff.drumStyleTable = #(alist->hash-table mydrums)

		% Turn off time signature
		\override Staff.TimeSignature #'stencil = ##f


		\drummode
		{
			\textLengthOn	% Stop the next note until after the text
			\stemUp 		% Make the stems point up
			\cadenzaOn		% Turn off auto production of bar lines

			\mark \markup { \box Cymbals}

			hihat4 
				^\markup
				{
					\center-align 
					"Hi hat"
				} 

			hho 
				_\markup \column
				{
					\override #'(baseline-skip . 2) 
					\center-align 
					\center-column 
					{"Hi hat" "open"}
				} 


			hhho ^\markup \column 
				{
					\override #'(baseline-skip . 2) 
					\center-align 
					\center-column 
					{"Hi hat" "half open"}
				}

			hhc _\markup \column
				{
					\override #'(baseline-skip . 2) 
					\center-align 
					\center-column 
					{"Hi hat" "closed"}
				}

			hhp ^\markup \column
				{
					\override #'(baseline-skip . 2) 
					\center-align 
					\center-column 
					{"Hi hat" "pedal"}
				}

			cymr _\markup \column
				{
					\override #'(baseline-skip . 2) 
					\center-align 
					\center-column 
					{"Ride" "cymbal"}
				}

			cymc ^\markup \column
				{
					\override #'(baseline-skip . 2) 
					\center-align 
					\center-column 
					{"Crash" "cymbal"}
				}

			cymch 
				_\markup \column
				{
					\override #'(baseline-skip . 2) 
					\center-align 
					\center-column 
					{"Chinese" "cymbal"}
				} 

			cyms
				^\markup \column
				{
					\override #'(baseline-skip . 2) 
					\center-align 
					\center-column 
					{"Splash" "cymbal"}
				} 

			cb
				_\markup \column
				{
					\override #'(baseline-skip . 2) 
					\center-align 
					\center-column 
					{"Cow" "bell"}
				} 


		}
		>>
	>>
}



% ===================================
% Key for the drums
% ===================================

\score { 
<< 
	\new DrumStaff 
	<<
		% ====================
		% Options
		% ====================

		% Use the drumkit defined above
		\set DrumStaff.drumStyleTable = #(alist->hash-table mydrums)

		% Turn off time signature
		\override Staff.TimeSignature #'stencil = ##f


		\drummode
		{
	
			\textLengthOn	% Stop the next note until after the text
			\stemUp 		% Make the stems point up
			\cadenzaOn		% Turn off auto production of bar lines
			\mark \markup { \box Drums}

			sn 
				^\markup \column
				{

					\center-align 
					"Snare"
				} 
			bd 
				_\markup \column
				{
					\center-align 
					"Kick R"
				} 

			bda 
				^\markup
				{
					\center-align 
					"Kick L"

				} 

			tomh 
				_\markup \column
				{
					\center-align 
					"Tom 1"
				} 
			tomml 
				^\markup \column
				{
					\center-align 
					"Tom 2"
				} 
			tomfh
				_\markup
				{
					\center-align 
					"Tom 3"
				} 
			tomfl 
				^\markup
				{
					\center-align 
					"Tom 4"
				} 
		}
	>>
>>
}

