mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2025-05-15 12:29:22 +02:00
Moved out of pipebanddrumming repo. This is the repo for all my music..
This commit is contained in:
parent
bcb750add2
commit
dd127fb48b
277 changed files with 0 additions and 572 deletions
21
template/bass.ly
Normal file
21
template/bass.ly
Normal file
|
@ -0,0 +1,21 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.bass.ily"
|
||||
|
||||
\score {
|
||||
\new PipeBandDrumStaff {
|
||||
\global
|
||||
\tenorglobal
|
||||
<<
|
||||
{ }
|
||||
{ }
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentBass
|
||||
composer = \composerBass
|
||||
}
|
||||
}
|
13
template/config.ily
Normal file
13
template/config.ily
Normal file
|
@ -0,0 +1,13 @@
|
|||
\version "2.19.0"
|
||||
%% Globals
|
||||
global = {
|
||||
\time 4/4
|
||||
}
|
||||
%% Format
|
||||
part = { \partial 8 s8 }
|
||||
halfline = { \repeat unfold 4 { s1 | } }
|
||||
line = { \repeat unfold 2 { \halfline } }
|
||||
|
||||
%% Headers
|
||||
title = "Title"
|
||||
meter = "Meter"
|
50
template/drums.ly
Normal file
50
template/drums.ly
Normal file
|
@ -0,0 +1,50 @@
|
|||
\version "2.19.0"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.bass.ily"
|
||||
\include "notes.tenor.ily"
|
||||
\include "notes.side.ily"
|
||||
|
||||
\score {
|
||||
\new StaffGroup <<
|
||||
\new PipeBandDrumStaff = "side" {
|
||||
\global
|
||||
\sideglobal
|
||||
\set PipeBandDrumStaff.instrumentName = \markup{\instrumentSide}
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{\shortInstrumentSide}
|
||||
|
||||
<<
|
||||
{ }%Format
|
||||
{ }%Music
|
||||
>>
|
||||
}
|
||||
\new PipeBandDrumStaff = "bass" {
|
||||
\bassglobal
|
||||
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentBass }
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentBass}
|
||||
|
||||
}
|
||||
\new PipeBandDrumStaff = "tenor" {
|
||||
\tenorglobal
|
||||
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentTenor }
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentTenor }
|
||||
|
||||
}
|
||||
>>
|
||||
\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 }}#} )
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
58
template/full.ly
Normal file
58
template/full.ly
Normal file
|
@ -0,0 +1,58 @@
|
|||
\version "2.19.0"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.bass.ily"
|
||||
\include "notes.tenor.ily"
|
||||
\include "notes.side.ily"
|
||||
\include "notes.pipes.ily"
|
||||
|
||||
\score {
|
||||
\new StaffGroup <<
|
||||
\new Staff {
|
||||
\global
|
||||
\pipeglobal
|
||||
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentPipes }
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentPipes }
|
||||
<<
|
||||
{}%Format
|
||||
{}%Pipes
|
||||
>>
|
||||
}
|
||||
\new PipeBandDrumStaff = "side" {
|
||||
\sideglobal
|
||||
\set PipeBandDrumStaff.instrumentName = \markup \column {\instrumentSide}
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{\shortInstrumentSide}
|
||||
|
||||
}
|
||||
\new PipeBandDrumStaff = "bass" {
|
||||
\bassglobal
|
||||
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentBass }
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentBass}
|
||||
|
||||
}
|
||||
\new PipeBandDrumStaff = "tenor" {
|
||||
\tenorglobal
|
||||
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentTenor }
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentTenor }
|
||||
|
||||
}
|
||||
>>
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
composer = \markup \large {
|
||||
\column \right-align {
|
||||
$(if (not (string=? "" composerPipes)) #{ \markup {\line { \composerPipes ":" }} #} )
|
||||
$(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=? "" composerPipes)) #{ \markup {\line { \instrumentPipes }}#} )
|
||||
$(if (not (string=? "" composerSide)) #{ \markup {\line { \instrumentSide }}#} )
|
||||
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \instrumentTenor }}#} )
|
||||
$(if (not (string=? "" composerBass)) #{ \markup {\line { \instrumentBass }}#} )
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
7
template/notes.bass.ily
Normal file
7
template/notes.bass.ily
Normal file
|
@ -0,0 +1,7 @@
|
|||
% <<TimeSig>> <<Title>>
|
||||
% Bass
|
||||
\version "2.18.2"
|
||||
composerBass = ""
|
||||
bassglobal = {}
|
||||
bassA = \drummode {
|
||||
}
|
9
template/notes.pipes.ily
Normal file
9
template/notes.pipes.ily
Normal file
|
@ -0,0 +1,9 @@
|
|||
% <<TimeSig>> <<Title>>
|
||||
% Pipes
|
||||
\version "2.18.2"
|
||||
composerPipes = ""
|
||||
pipeglobal = {
|
||||
\bagpipeKey
|
||||
}
|
||||
pipesA = {
|
||||
}
|
7
template/notes.side.ily
Normal file
7
template/notes.side.ily
Normal file
|
@ -0,0 +1,7 @@
|
|||
% <<TimeSig>> <<Title>>
|
||||
% Side
|
||||
\version "2.18.2"
|
||||
composerSide = ""
|
||||
sidgeglobal = {}
|
||||
\snareA = \drummode {
|
||||
}
|
6
template/notes.tenor.ily
Normal file
6
template/notes.tenor.ily
Normal file
|
@ -0,0 +1,6 @@
|
|||
% <<TimeSig>> <<Title>>
|
||||
% Tenor
|
||||
\version "2.18.2"
|
||||
composerTenor = ""
|
||||
tenorA = \drummode {
|
||||
}
|
21
template/pipes.ly
Normal file
21
template/pipes.ly
Normal file
|
@ -0,0 +1,21 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.pipes.ily"
|
||||
|
||||
\score {
|
||||
\new Staff {
|
||||
\global
|
||||
\pipeglobal
|
||||
<<
|
||||
{ }
|
||||
{ }
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
21
template/side.ly
Normal file
21
template/side.ly
Normal file
|
@ -0,0 +1,21 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.side.ily"
|
||||
|
||||
\score {
|
||||
\new PipeBandDrumStaff {
|
||||
\global
|
||||
\tenorglobal
|
||||
<<
|
||||
{ }
|
||||
{ }
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentSide
|
||||
composer = \composerSide
|
||||
}
|
||||
}
|
20
template/tenor.ly
Normal file
20
template/tenor.ly
Normal file
|
@ -0,0 +1,20 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.tenor.ily"
|
||||
|
||||
\score {
|
||||
\new PipeBandDrumStaff {
|
||||
\global
|
||||
<<
|
||||
{}
|
||||
{}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentTenor
|
||||
composer = \composerTenor
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue