mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2025-05-15 12:29:22 +02:00
Added Miss Kirkwood, Amazing Grace + Added Lyrics templating
This commit is contained in:
parent
b439412be5
commit
ce15c4355e
22 changed files with 672 additions and 306 deletions
|
@ -5,6 +5,8 @@
|
|||
\include "notes.tenor.ily"
|
||||
\include "notes.side.ily"
|
||||
\include "notes.pipes.ily"
|
||||
%\include "notes.pipes.seconds.ily"
|
||||
%\include "notes.lyrics.ily"
|
||||
|
||||
\score {
|
||||
\new StaffGroup <<
|
||||
|
@ -14,10 +16,26 @@
|
|||
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentPipes }
|
||||
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentPipes }
|
||||
<<
|
||||
{}%Format
|
||||
\new Voice = "format"
|
||||
{}%Format
|
||||
|
||||
\new Voice = "pipes"
|
||||
{}%Pipes
|
||||
>>
|
||||
}
|
||||
% \new Lyrics = "verse1" {
|
||||
% \lyricsglobal
|
||||
% \lyricsto "pipes" {
|
||||
% \verseA
|
||||
% }
|
||||
% }
|
||||
% \new Staff = "seconds" {
|
||||
% \pipessecndglobal
|
||||
% \set Staff.instrumentName = \markup{ \instrumentPipes Seconds }
|
||||
% \set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes 2nd}
|
||||
%
|
||||
%
|
||||
% }
|
||||
\new PipeBandDrumStaff = "side" {
|
||||
\sideglobal
|
||||
\set PipeBandDrumStaff.instrumentName = \markup \column {\instrumentSide}
|
||||
|
@ -42,13 +60,17 @@
|
|||
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 }}#} )
|
||||
|
|
49
template/lyrics.ly
Normal file
49
template/lyrics.ly
Normal file
|
@ -0,0 +1,49 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
%\include "notes.pipes.ily"
|
||||
\include "notes.lyrics.ily"
|
||||
|
||||
\score {
|
||||
\new Staff {
|
||||
\global
|
||||
\lyricsglobal
|
||||
<<
|
||||
\new Voice = "format"
|
||||
{ }%Format
|
||||
% \new Voice = "tune"
|
||||
% { }
|
||||
\new Lyrics = "lyrics" {
|
||||
\lyricsto "format" {
|
||||
|
||||
}
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentLyrics
|
||||
composer = \markup \large {
|
||||
\column \right-align {
|
||||
$(if (not (string=? "" composerPipes)) #{ \markup { \line { \composerPipes ":" } } #} )
|
||||
$(if (not (string=? "" composerLyrics)) #{ \markup { \line { \composerLyrics ":" } } #} )
|
||||
}
|
||||
\column \right-align {
|
||||
$(if (not (string=? "" composerPipes)) #{ \markup { \line { \instrumentPipes } } #} )
|
||||
$(if (not (string=? "" composerLyrics)) #{ \markup { \line { "Lyrics" } } #} )
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
%\markup {
|
||||
% \fill-line{
|
||||
% \column {
|
||||
% \verseAblock
|
||||
% \combine \null \vspace #0.5
|
||||
% \verseBblock
|
||||
% }
|
||||
% }
|
||||
%}
|
||||
|
8
template/notes.lyrics.ily
Normal file
8
template/notes.lyrics.ily
Normal file
|
@ -0,0 +1,8 @@
|
|||
% <<TimeSig>> <<Title>>
|
||||
% Lyrics
|
||||
\version "2.18.2"
|
||||
composerLyrics = ""
|
||||
lyricsglobal = {}
|
||||
% Music
|
||||
lyricsA = \drummode {
|
||||
}
|
|
@ -3,7 +3,7 @@
|
|||
\include "config.ily"
|
||||
\include "notes.pipes.ily"
|
||||
\include "notes.pipes.seconds.ily"
|
||||
\include "notes.pipes.thirds.ily"
|
||||
%\include "notes.pipes.thirds.ily"
|
||||
|
||||
\score {
|
||||
\new StaffGroup <<
|
||||
|
@ -13,7 +13,9 @@
|
|||
\set Staff.instrumentName = \markup{ \instrumentPipes }
|
||||
\set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes }
|
||||
<<
|
||||
\new Voice = "format"
|
||||
{ }%Format
|
||||
\new Voice = "pipes"
|
||||
{ }%Pipes
|
||||
>>
|
||||
}
|
||||
|
@ -23,12 +25,12 @@
|
|||
\set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes 2nd}
|
||||
|
||||
}
|
||||
\new Staff = "thirds" {
|
||||
\pipesthrdglobal
|
||||
\set Staff.instrumentName = \markup{ \instrumentPipes Thirds }
|
||||
\set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes 3rd }
|
||||
|
||||
}
|
||||
% \new Staff = "thirds" {
|
||||
% \pipesthrdglobal
|
||||
% \set Staff.instrumentName = \markup{ \instrumentPipes Thirds }
|
||||
% \set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes 3rd }
|
||||
%
|
||||
% }
|
||||
>>
|
||||
\header {
|
||||
title = \title
|
||||
|
@ -57,18 +59,18 @@
|
|||
|
||||
}
|
||||
\new Staff = "seconds" {
|
||||
\pipesecndglobal
|
||||
\pipessecndglobal
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
%% Seconds
|
||||
|
||||
}
|
||||
\new Staff = "thirds" {
|
||||
\pipesthrdglobal
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
%% Thirds
|
||||
|
||||
}
|
||||
}
|
||||
% \new Staff = "thirds" {
|
||||
% \pipesthrdglobal
|
||||
% \set Staff.midiInstrument = #"bagpipe"
|
||||
% %% Thirds
|
||||
%
|
||||
% }
|
||||
>>
|
||||
\midi { \confTempo }
|
||||
\header {
|
||||
title = \title
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue