Compare commits
10
Commits
f8223eb4b9
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
447494b04b | ||
|
|
e1bc239874 | ||
|
|
4ddb75c00d | ||
|
|
096a8f56c7 | ||
|
|
3d57e3feed | ||
|
|
a3ec651687 | ||
|
|
e62a87bcd2 | ||
|
|
d59d5d587f | ||
|
|
53e5bfe883 | ||
|
|
8963a2cc17 |
@@ -3,12 +3,9 @@
|
|||||||
# Constants ############################################################################################################
|
# Constants ############################################################################################################
|
||||||
|
|
||||||
read -d USAGE <<-END
|
read -d USAGE <<-END
|
||||||
USAGE: $0 <clean|compile|help|watch> (--view)
|
USAGE: $0 <clean|compile|help> (--view)
|
||||||
END
|
END
|
||||||
|
|
||||||
FSWATCH="fswatch"
|
|
||||||
LILYPOND_APP="/Applications/LilyPond.app"
|
|
||||||
LILYPOND="$LILYPOND_APP/Contents/Resources/bin/lilypond"
|
|
||||||
|
|
||||||
# Helper Functions #####################################################################################################
|
# Helper Functions #####################################################################################################
|
||||||
|
|
||||||
@@ -18,16 +15,8 @@ function cancel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function check-dependencies {
|
function check-dependencies {
|
||||||
if ! which -s "$FSWATCH"; then
|
if ! which -s "lilypond"; then
|
||||||
echo "Could not find \"fswatch\"! Try installing using: brew install fswatch"
|
brew install lilypond
|
||||||
echo
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ ! -d "$LILYPOND_APP" ]]; then
|
|
||||||
echo "Could not find LilyPond! Please install it from http://lilypond.org/download.html."
|
|
||||||
echo
|
|
||||||
exit 1
|
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,10 +25,10 @@ function compile-ly {
|
|||||||
DIR_NAME=$(dirname $1 | sed "s@./src/scores/@@")
|
DIR_NAME=$(dirname $1 | sed "s@./src/scores/@@")
|
||||||
|
|
||||||
mkdir -p "dist/$DIR_NAME"
|
mkdir -p "dist/$DIR_NAME"
|
||||||
$LILYPOND -I "$PWD/src/includes" -I "$PWD/src/pieces" -o "dist/$DIR_NAME/$BASE_NAME" $1
|
lilypond -I "$PWD/src/includes" -I "$PWD/src/pieces" -o "dist/$DIR_NAME/$BASE_NAME" $1
|
||||||
|
|
||||||
if [[ "$VIEW" == "YES" ]]; then
|
if [[ "$VIEW" == "YES" ]]; then
|
||||||
open -a "/Applications/Google Chrome.app" -g "dist/$DIR_NAME/$BASE_NAME.pdf"
|
open -a "/Applications/Safari.app" -g "dist/$DIR_NAME/$BASE_NAME.pdf"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -62,20 +51,12 @@ function command-compile {
|
|||||||
[[ "$PATTERN" == "" ]] && break
|
[[ "$PATTERN" == "" ]] && break
|
||||||
PATTERNS=(${PATTERNS[@]:1})
|
PATTERNS=(${PATTERNS[@]:1})
|
||||||
|
|
||||||
find src/scores -name "*.ly" | grep -v includes | grep "$PATTERN" | while read FILE; do
|
find src/scores -name "*.ly" | grep -v includes | grep "\.ly$" | grep "$PATTERN" | while read FILE; do
|
||||||
compile-ly "./$FILE"
|
compile-ly "./$FILE"
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
function command-watch {
|
|
||||||
CURRENT_DIR=$(dirname $0)
|
|
||||||
$FSWATCH -r src/scores -i '*.ly$' -e "includes" | while read FILE; do
|
|
||||||
FILE=$(echo $FILE | sed 's@.*/src/scores/\(.*\)$@./src/scores/\1@')
|
|
||||||
compile-ly $FILE
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
# Initialization #######################################################################################################
|
# Initialization #######################################################################################################
|
||||||
|
|
||||||
check-dependencies
|
check-dependencies
|
||||||
@@ -104,6 +85,5 @@ case "$COMMAND" in
|
|||||||
clean) command-clean;;
|
clean) command-clean;;
|
||||||
compile) command-compile;;
|
compile) command-compile;;
|
||||||
help|-h|-?|--help) usage;;
|
help|-h|-?|--help) usage;;
|
||||||
watch) command-watch;;
|
|
||||||
*) cancel "Unrecognized command: $COMMAND"
|
*) cancel "Unrecognized command: $COMMAND"
|
||||||
esac
|
esac
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Executable
BIN
Binary file not shown.
|
After Width: | Height: | Size: 162 KiB |
@@ -55,8 +55,8 @@ naturalizeMusic = #(define-music-function (parser location m)
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
scoop = \once \override NoteHead #'stencil = #scoop-stencil
|
scoop = \once \override NoteHead.stencil = #scoop-stencil
|
||||||
|
|
||||||
toCoda = \markup {
|
toCoda = \markup {
|
||||||
\fontsize #-2 \lower #1 "TO" \musicglyph #"scripts.coda"
|
\fontsize #-2 \lower #1 "TO" \musicglyph #"scripts.coda"
|
||||||
}
|
}
|
||||||
|
|||||||
+19
-19
@@ -1,40 +1,40 @@
|
|||||||
\version "2.18.2"
|
\version "2.24.4"
|
||||||
\language english
|
\language english
|
||||||
|
|
||||||
\include "functions.ly"
|
\include "functions.ly"
|
||||||
|
|
||||||
\header {
|
\header {
|
||||||
subtitle = \markup { \vspace #1 }
|
subtitle = \markup { \vspace #1 }
|
||||||
tagline = ""
|
tagline = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
\layout {
|
\layout {
|
||||||
indent = 0.5 \in
|
indent = 0.5 \in
|
||||||
|
|
||||||
\context {
|
\context {
|
||||||
\Score
|
\Score
|
||||||
proportionalNotationDuration = #(ly:make-moment 1/8)
|
proportionalNotationDuration = #(ly:make-moment 1/12)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
\paper {
|
\paper {
|
||||||
#(set-paper-size "letter")
|
#(set-paper-size "letter")
|
||||||
top-margin = 0.5 \in
|
top-margin = 0.5 \in
|
||||||
right-margin = 1.0 \in
|
right-margin = 1.0 \in
|
||||||
left-margin = 1.0 \in
|
left-margin = 1.0 \in
|
||||||
bottom-margin = 0.5 \in
|
bottom-margin = 0.5 \in
|
||||||
|
|
||||||
system-system-spacing = #'(
|
system-system-spacing = #'(
|
||||||
(basic-distance . 12)
|
(basic-distance . 12)
|
||||||
(minimum-distance . 6)
|
(minimum-distance . 6)
|
||||||
(padding . 3)
|
(padding . 3)
|
||||||
(stretchability . 24)
|
(stretchability . 24)
|
||||||
)
|
)
|
||||||
|
|
||||||
markup-system-spacing = #'(
|
markup-system-spacing = #'(
|
||||||
(basic-distance . 6)
|
(basic-distance . 6)
|
||||||
(minimum-distance . 3)
|
(minimum-distance . 3)
|
||||||
(padding . 3)
|
(padding . 3)
|
||||||
(stretchability . 12)
|
(stretchability . 12)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,31 @@
|
|||||||
|
\include "globals.ly"
|
||||||
|
|
||||||
|
\header {
|
||||||
|
title = "As Time Goes By"
|
||||||
|
subtitle = "From Casablanca"
|
||||||
|
composer = "Herman Hupfeld"
|
||||||
|
}
|
||||||
|
|
||||||
|
melody = \relative c'' {
|
||||||
|
\tempo Andante
|
||||||
|
\numericTimeSignature \time 4/4
|
||||||
|
\key ef \major
|
||||||
|
|
||||||
|
s2. r8 g
|
||||||
|
|
||||||
|
\repeat volta 2 {
|
||||||
|
af8 g f ef f4. g8 | bf8 af g f af4. bf8 | ef8 d c bf c2 | r2 r4 d4 |
|
||||||
|
f8 ef d c d4 ef | bf4 bf ef, f |
|
||||||
|
}
|
||||||
|
|
||||||
|
\alternative {{
|
||||||
|
g1( | g2) r4 r8 g |
|
||||||
|
} {
|
||||||
|
g1( | g2) r2
|
||||||
|
}}
|
||||||
|
|
||||||
|
ef8 f ef c'( c4) c | c8 df c b c2 | f,8 g f c'( c4) c | c8 df c b c2 |
|
||||||
|
g8 af g ef'( ef4) ef | ef8 d ef d f4 d | c4 c g g | bf2. r8 g \bar "||" |
|
||||||
|
af8 g f ef f4. g8 | bf8 af g f af4. bf8 | ef8 d c bf c2 | r2 r4 d |
|
||||||
|
f8 ef d c d4 ef | bf4 bf2 g4 | bf2 bf | ef1 \bar "|." |
|
||||||
|
}
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
\include "globals.ly"
|
||||||
|
|
||||||
|
\header {
|
||||||
|
title = "E Lucevan le Stelle"
|
||||||
|
subtitle = "from Tosca"
|
||||||
|
composer = "Puccini"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
melody = \relative c' {
|
||||||
|
\tempo "Andante lento appassionato molto"
|
||||||
|
\numericTimeSignature
|
||||||
|
\key b \minor
|
||||||
|
|
||||||
|
%{ 1 %} | \time 4/4 r4 r8 \p fs8--\downbow cs'8-- d-- e-- fs--
|
||||||
|
%{ 2 %} | \time 2/4 e8-- d-- cs8.-- fs,16(\downbow
|
||||||
|
%{ 3 %} | \time 3/4 b4.) b8--\upbow cs-- d--
|
||||||
|
%{ 4 %} | g,4( g8.) g16( a b cs d)
|
||||||
|
%{ -- %}
|
||||||
|
%{ 5 %} | e8-- fs-- g-- a--\fermata \acciaccatura { g16 a16 } g8. e16(\upbow
|
||||||
|
%{ 6 %} | fs4) fs2\downbow
|
||||||
|
%{ 7 %} | r8 fs,8--\downbow_\markup { \italic "rit." } cs'-- d-- e-- fs--
|
||||||
|
%{ 8 %} | \time 2/4 e8 d \acciaccatura { cs16 d } cs8.\fermata fs,16(\downbow
|
||||||
|
%{ -- %}
|
||||||
|
%{ 9 %} | \time 3/4 b4.)_\markup { \italic "a tempo" } b8( cs d)
|
||||||
|
%{ 10 %} | g4\downbow g2\upbow
|
||||||
|
%{ 11 %} | r8 g8--\downbow\mf g--_\markup { \italic "stent." } g-- e8. cs16(
|
||||||
|
%{ 12 %} | fs4.) b,8(\< cs d)\!
|
||||||
|
%{ -- %}
|
||||||
|
%{ 13 %} | b8 e-- e-- e-- cs8. as16(\upbow
|
||||||
|
%{ 14 %} | ds4) ds2\>
|
||||||
|
%{ 15 %} | \time 4/4 r8\! a e' f g a g16 f e16.\fermata a,32\upbow
|
||||||
|
%{ 16 %} | \time 3/4 d8\mf_\markup { \italic "affrett." } d4.\> cs8.(\downbow fs,16)\!
|
||||||
|
%{ -- %}
|
||||||
|
%{ 17 %} | b2.\upbow
|
||||||
|
%{ 18 %} | \time 4/4 r8 fs8(_\markup { \italic "con grande sentimento" } cs' d e fs)
|
||||||
|
e16( d cs16.)\fermata fs,32\downbow(
|
||||||
|
%{ 19 %} | \time 3/4 b8) b4 b8( cs d)
|
||||||
|
%{ 20 %} | g,4 g8. g16( a b cs d)
|
||||||
|
%{ -- %}
|
||||||
|
%{ 21 %} | e8( fs_\markup { \italic "rit." } g a) \acciaccatura { g16 a } g8. e16(
|
||||||
|
%{ 22 %} | fs4) fs2
|
||||||
|
%{ 23 %} | r8 fs,8\downbow\mf cs'8_\markup { \italic "rit." } d e fs
|
||||||
|
%{ 24 %} | \time 2/4 e8 d \acciaccatura { cs16 d } cs8.\fermata fs,16(\downbow
|
||||||
|
%{ 25 %} | \time 3/4 b8) b4 b8\upbow cs d
|
||||||
|
%{ 26 %} | g4\downbow\< g2\upbow
|
||||||
|
%{ 27 %} | r8\!\f g8--\downbow g-- g-- \tuplet 3/2 { e4(\accent cs8) }
|
||||||
|
%{ 28 %} | fs4 fs2\>
|
||||||
|
%{ 29 %} | r8\! e8--\mf\downbow e-- e-- cs8. as16(\downbow
|
||||||
|
%{ 30 %} | d4) d2\<\upbow_\markup { \italic "affrett." }
|
||||||
|
%{ 31 %} | \time 4/4 r8\! a8--\f\downbow_\markup { \italic "cresc." } e'-- f-- g-- a--\fermata
|
||||||
|
g16\upbow f e a,
|
||||||
|
%{ 32 %} | \time 3/4 d8 d4. \tuplet 3/2 { cs8-- cs8.-- fs,16( }
|
||||||
|
%{ 33 %} | \tempo Lento b8) b4.\downbow r4 \bar "|."
|
||||||
|
}
|
||||||
@@ -0,0 +1,89 @@
|
|||||||
|
\include "globals.ly"
|
||||||
|
|
||||||
|
\header {
|
||||||
|
title = "Empty Chairs at Empty Tables"
|
||||||
|
composer = "Music by Claude-Michel Schönberg"
|
||||||
|
poet = "Lyrics by Herbert Kretzmer"
|
||||||
|
}
|
||||||
|
|
||||||
|
melodyNotes = \relative c' {
|
||||||
|
\tempo "Moderato"
|
||||||
|
\numericTimeSignature \time 4/4
|
||||||
|
\key a \minor
|
||||||
|
|
||||||
|
r4 a'8 a b a g f | f e4. ~ e2 |
|
||||||
|
r4 a8 a b a g f | e g4. ~ g2 | r4 g8 g a g f e |
|
||||||
|
e8 d4. r4 e8 f | e4. e8 b4. c8 | e2. r4 |
|
||||||
|
r4 a8 a b a g f | f e4. ~ e2 | r4 a8 a b a g f |
|
||||||
|
%\pageBreak % Page 2 -------------------------------------------------------------------------------------------
|
||||||
|
e8 g4. ~ g2 | r4 g8 g a g f e | e d4. r4 e8 f |
|
||||||
|
e4. e8 b4. c8 | a1 | r2. c8 c | c c4. d4. c8 |
|
||||||
|
c8 a4. ~ a4 c8 d | ef4. f8 g4. f8 | f d4. ~ d4 d8 e |
|
||||||
|
f4. g8 a4. g8 | g e4. r8 c8 c d' | d2. d4 |
|
||||||
|
cs4 r8 cs8 d e r4 | f4. e8 d4. a8 | f2 r4. f'8 |
|
||||||
|
%\pageBreak % Page 3 -------------------------------------------------------------------------------------------
|
||||||
|
g4. f8 e4. d8 | a4 f2. | s4 c'8 c d c bf a |
|
||||||
|
a2. g4 | a1 | r4 a8 a b a g f | f e4. ~ e2 |
|
||||||
|
r4 a8 a b a g f | e g4. ~ g2 | r4 g8 g a g f e |
|
||||||
|
e d4. r4 e8 f | e4. e8 b4. b8 | e1 |
|
||||||
|
\key d \minor
|
||||||
|
d'4\rest d8 d e d c bf | bf a4. ~ a2 | r4 d8 d e d c bf |
|
||||||
|
%\pageBreak % Page 4 -------------------------------------------------------------------------------------------
|
||||||
|
a8 c4. ~ c2 | r4 c8 c d c bf a | a g4. ~ g4 a8 bf |
|
||||||
|
a4. a8 e4 f | a2. r4 | r4 d8 d e d f8. e16 |
|
||||||
|
e8 a,4. ~ a2 | r4 d8 d e d c bf | a c4. ~ c2 |
|
||||||
|
r4 c8 c d c bf a | a g4. ~ g4 a8 bf | a4. a8 e4. f8 |
|
||||||
|
d2 r2 ||
|
||||||
|
}
|
||||||
|
|
||||||
|
melodyDecoration = \relative c' {
|
||||||
|
s4 \p s2. | s1 |
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
%\pageBreak % Page 2 -------------------------------------------------------------------------------------------
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
s1 | s1 | s2. s8 \mf s8 | s1 |
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
s4. s8 \< s2 | s4. \f s8 s4 \> s4 | s2 \! s2 |
|
||||||
|
%\pageBreak % Page 3 -------------------------------------------------------------------------------------------
|
||||||
|
s1 | s1 | s4 s8 \p s8 s2 |
|
||||||
|
s1 | s1 | s1 | s1 |
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
s4 s8 \mf s8 s2 | s1 | s1 |
|
||||||
|
%\pageBreak % Page 4 -------------------------------------------------------------------------------------------
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
s8 \f s8 s2. | s1 | s1 |
|
||||||
|
s4 s8 \> s8 s2 | s8 s4. \p s2 | s1 |
|
||||||
|
s2 \pp s2 |
|
||||||
|
}
|
||||||
|
|
||||||
|
melody = << \melodyNotes \melodyDecoration >>
|
||||||
|
|
||||||
|
words = \lyricmode {
|
||||||
|
There's a grief that can't be spo -- ken,
|
||||||
|
There's a pain goes on and on._ _ Emp -- ty chairs at emp -- ty
|
||||||
|
ta -- bles, now my friends are dead and gone.
|
||||||
|
Here they talked of rev -- o -- lu -- tion._ Here it was they lit the
|
||||||
|
%\pageBreak % Page 2 -------------------------------------------------------------------------------------------
|
||||||
|
flame._ _ Here they sang a -- bout to -- mor -- row, and to --
|
||||||
|
mor -- row nev -- er came. From the ta -- ble in the
|
||||||
|
cor -- ner_ they could see a world re -- born._ _ And they
|
||||||
|
rose with voi -- ces ring -- ing. And I can hear them
|
||||||
|
now the ve -- ry words that they had sung be --
|
||||||
|
%\pageBreak % Page 3 -------------------------------------------------------------------------------------------
|
||||||
|
came their last com -- mun -- ion on the lon -- ly bar -- ri --
|
||||||
|
cade at dawn. Oh my friends my friends for -- give me._
|
||||||
|
That I live and you are gone._ _ There's a grief that can't be
|
||||||
|
spo -- ken. There's a pain goes on and on.
|
||||||
|
Phan -- tom fa -- ces at the win -- down._ Phan -- tom sha -- dows on the
|
||||||
|
%\pageBreak % Page 4 -------------------------------------------------------------------------------------------
|
||||||
|
floor._ _ Emp -- ty chairs at emp -- ty ta -- bles,_ where my
|
||||||
|
friends will meet no more. Oh, my friends, my friends don't
|
||||||
|
ask me what your sac -- ri -- fice was for. _
|
||||||
|
Emp -- ty chairs and emp -- ty ta -- bles where my friends will sing no
|
||||||
|
more.
|
||||||
|
}
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
\include "globals.ly"
|
||||||
|
|
||||||
|
\header {
|
||||||
|
title = "Feed the Birds"
|
||||||
|
composer = "by Richard & Robert Sherman"
|
||||||
|
}
|
||||||
|
|
||||||
|
melody = \relative c'' {
|
||||||
|
\tempo 4 = 60
|
||||||
|
\time 3/4
|
||||||
|
\key g \major
|
||||||
|
|
||||||
|
b4 c b | a2 g8 a | b4 c b | b2. |
|
||||||
|
b4 c b | a2 g8 fs | e4 fs g | fs2 fs4 |
|
||||||
|
e fs g | fs e ds e2.( | e4) r g8 a | b4 c b |
|
||||||
|
a2 g8 fs | d4 fs g | fs2. | e2 fs8 e |
|
||||||
|
ds2 b8 fs' | e2.( | e4) r r | d4 c'4. c8 |
|
||||||
|
c8 d c2 | c4 b4. as8 | b2. | d,4 c' c |
|
||||||
|
c2 d8 c | b2.( | b4) r b | b4 c b |
|
||||||
|
a4 g4. fs8 | e4 fs g | fs2 g8 fs | e2 e4 |
|
||||||
|
ds8 b4. fs'4 | e2.( | d2) r4 | g,2( g8) b |
|
||||||
|
d2. | e8 g4.( g8) e | d2. | e8 g4.( g4) |
|
||||||
|
b8 g4.( g4) | g8 fs4.( fs8) g | a2 r4 |
|
||||||
|
g,2( g8) b | d2. | e4 g4. e8 | d2. |
|
||||||
|
e4 g4. e8 | d2 g4 | fs2 g8 a | g4 r g8 fs |
|
||||||
|
e2 ds8 e | b'4 a4. fs8 | e2 ds8 e | fs4 b,4. b8 |
|
||||||
|
e2 ds8 e | b'2 fs4 | g2.( | g4) r g |
|
||||||
|
g4 fs g | d'4 c4. a8 | g2 fs8 g | a4 d,4. a'8 |
|
||||||
|
b2 c8 b | a2 g8 fs | e2.( | d2) r4 |
|
||||||
|
g,2( g8) b | d2 d4 | e8 g4.( g8) e | d2. |
|
||||||
|
e8 g4.( g4) | b8 g4.( g8) g | g4 fs g | a2. |
|
||||||
|
g,2( g8) b | d2. | e8 g4.( g8) a | b2. |
|
||||||
|
b8 g4.( g4) | b8 g4.( g4) | b8 g4.( g8) a | g2.\fermata \bar "|."
|
||||||
|
}
|
||||||
|
|
||||||
|
words = \lyricmode {
|
||||||
|
_ _ _ _ _ _ _ _ _ _
|
||||||
|
Ear -- ly each day to the steps of Saint Paul’s the lit -- tle old bird wo -- man comes.
|
||||||
|
In her own spe -- cial way to the peo -- ple she calls, “Come, buy my bags full of crumbs.”
|
||||||
|
Come feed the lit -- tle birds, show them you care, and you’ll be glad if you do.
|
||||||
|
Their young ones are hun -- gry their nests are so bare; all it takes is tup -- pence from you.
|
||||||
|
Feed the birds, tup -- pence a bag, tup -- pence, tup -- pence, tup -- pence a bag.
|
||||||
|
“Feed the birds,” that’s what she cries, while o -- ver -- head, her birds fill the skies.
|
||||||
|
All a -- round the ca -- the -- dral the saints and a -- pos -- tles look down as she sells her wares.
|
||||||
|
Al -- though you can't see it, you know they are smi -- ling each time some -- one shows that he cares.
|
||||||
|
Though her words are sim -- ple and few, lis -- ten, lis -- ten, she's call -- ing to you:
|
||||||
|
“Feed the birds, tup -- pence a bag, tup -- pence, tup -- pence, tup -- pence a bag.”
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
% Copied from Easy Classical Clarinet Solos by Javier Marcó
|
||||||
|
% pg 19
|
||||||
|
|
||||||
|
\include "globals.ly"
|
||||||
|
|
||||||
|
\header {
|
||||||
|
title = "Greensleeves"
|
||||||
|
composer = "Traditional"
|
||||||
|
arranger = "arr. Javier Marcó"
|
||||||
|
}
|
||||||
|
|
||||||
|
melody = \relative c' {
|
||||||
|
\tempo "Andante"
|
||||||
|
\time 3/4
|
||||||
|
\key c \major
|
||||||
|
|
||||||
|
r2 a4 \mf |
|
||||||
|
|
||||||
|
\repeat volta 2 {
|
||||||
|
c2 d4 | e4. f8 e4 | d2 b4 | g4. a8 b4 |
|
||||||
|
c2 a4 | a4. gs8 a4 | b2 gs4 | e2 a4 |
|
||||||
|
c2 d4 | e4. f8 e4 | d2 b4 | g4. a8 b4 |
|
||||||
|
c4. b8 a4 | gs4. fs8 gs4 | a2 a4 |
|
||||||
|
}
|
||||||
|
|
||||||
|
\alternative {{ a2 a4 } { a2. }}
|
||||||
|
|
||||||
|
\repeat volta 2 {
|
||||||
|
g'2. | g4. f8 e4 | d2 b4 | g4. a8 b4 |
|
||||||
|
c2 a4 | a4. gs8 a4 | b2 gs4 | e2. |
|
||||||
|
g'2. | g4. f8 e4 | d2 b4 | g4. a8 b4 |
|
||||||
|
c4. b8 a4 | gs4. fs8 gs4 | a2 a4 | a2. |
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
\include "globals.ly"
|
||||||
|
|
||||||
|
\header {
|
||||||
|
title = "Nature Boy"
|
||||||
|
composer = "music by: Eden Ahbez"
|
||||||
|
poet = "sung by: Nat King Cole"
|
||||||
|
}
|
||||||
|
|
||||||
|
melodyNotes = \relative c' {
|
||||||
|
\tempo Slowly
|
||||||
|
\key g \major
|
||||||
|
\time 3/4
|
||||||
|
|
||||||
|
s2 s8 b | b'8. g16 e2( | e8) b fs' g a c | b8. g16 e2( |
|
||||||
|
e8) b fs' g a c | b8 e ds2 | b8 d cs2 | b8 c b4( b8) e, |
|
||||||
|
fs2. | b8 a fs2( | fs2) r8 b, | a'8 g e2( |
|
||||||
|
e2) r8 as,8 | g'8 fs cs2( | cs2) d4 | ds2.( |
|
||||||
|
d2) r8 b | b'8. g16 e2( | e8) b fs' g a c | b8. g16 e2( |
|
||||||
|
e8) b fs' g a c | b8 e ds2 | b8 d cs2 | b8 c b4( b8) e, |
|
||||||
|
fs2. | b8 a fs2( | fs2) r8 b,8 | a'8 g e2( |
|
||||||
|
e2) r8 as,8 | g'8 fs cs4( cs8) c | e8 ds4. c8. b16 | e2.( |
|
||||||
|
e2) r4 |
|
||||||
|
}
|
||||||
|
|
||||||
|
melodyDecoration = \relative c' {
|
||||||
|
\time 3/4
|
||||||
|
|
||||||
|
s2 s4 \bar "||" | s2 s4 | s2 s4 | s2 s4 |
|
||||||
|
s2 s4 | s2 s4 | s2 s4 | s2 s4 |
|
||||||
|
s2 s4 | s2 s4 | s2 s4 | s2 s4 |
|
||||||
|
s2 s4 | s2 s4 | s2 s4 | s2 s4 |
|
||||||
|
s2 s4 \bar "||" | s2 s4 | s2 s4 | s2 s4 |
|
||||||
|
s2 s4 | s2 s4 | s2 s4 | s2 s4 |
|
||||||
|
s2 s4 | s2 s4 | s2 s4 | s2 s4 |
|
||||||
|
s2 s4 | s2 s4 | s2 s4 | s2 s4 |
|
||||||
|
s2 s4 \bar "|." |
|
||||||
|
}
|
||||||
|
|
||||||
|
melody = << \melodyNotes \melodyDecoration >>
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
% Copied from First Book of Clarinet Solos by John Davies and Paul Reade
|
||||||
|
% pg 2
|
||||||
|
|
||||||
|
\include "globals.ly"
|
||||||
|
|
||||||
|
\header {
|
||||||
|
title = "Song of the Volga Boatmen"
|
||||||
|
composer = "Traditional"
|
||||||
|
arranger = "arr. Paul Reade"
|
||||||
|
}
|
||||||
|
|
||||||
|
melodyNotes = \relative c' {
|
||||||
|
\tempo "Lento e sostenuto"
|
||||||
|
\numericTimeSignature \time 2/2
|
||||||
|
\key a \minor
|
||||||
|
|
||||||
|
c4 a d2 | a2 r | c4 a d2 | a2 r | c2 f | e4 f8-- e d2 |
|
||||||
|
c4 a d2 | a2 r | c2. c4 | c4-- bf a g | a2 c | a2 r | c2. c4 |
|
||||||
|
c4-- bf a g | a2 c | a2 r | d2 d4 d | a2 a | f'2 e4 d | c2 a |
|
||||||
|
d2 f | d4 f8-- e d2 | c4 a d2 | a2 r | c4 a d2 | a2 r |
|
||||||
|
|
||||||
|
\bar "|."
|
||||||
|
}
|
||||||
|
|
||||||
|
melodyDecoration = \relative c' {
|
||||||
|
s4 \mf \< s4 s2 \! \> | s2 s2 \! | s4 \< s4 s2 \! \> | s2 \! s2 | s1 | s1 |
|
||||||
|
s4 \< s2 s4 \! \> | s2 s2 \! | s2. \p s4 | s4 s4 \< s4 s4 \! | s2 \> s2 | s2 \! s2 | s1 |
|
||||||
|
s4 s4 \< s4 s4 \! | s2 \> s2 \! | s1 | s2 \f s2 | s1 | s1 | s1 |
|
||||||
|
s2 \cresc s2 | s1 \! | s4 s4 s2 \dim | s2 s2 \! | s4 \< s4 \s2 \! \> | s2 s2 \! |
|
||||||
|
}
|
||||||
|
|
||||||
|
melody = << \melodyNotes \melodyDecoration >>
|
||||||
@@ -0,0 +1,140 @@
|
|||||||
|
% Copied from "Easy Piano: Miss Siagon"
|
||||||
|
% pgs. 62-65
|
||||||
|
|
||||||
|
\include "globals.ly"
|
||||||
|
|
||||||
|
\header {
|
||||||
|
title = "Bui Doi"
|
||||||
|
composer = "music by Claude-Michel Schönberg"
|
||||||
|
poet = "lyrics by Alain Boublil"
|
||||||
|
}
|
||||||
|
|
||||||
|
atempo = \markup \italic \fontsize #-1 "a tempo"
|
||||||
|
john = \markup { \bold \fontsize #-1 "JOHN:" }
|
||||||
|
men = \markup { \bold \fontsize #-1 "MEN:" }
|
||||||
|
rit = \markup \italic \fontsize #-1 "rit."
|
||||||
|
|
||||||
|
melody = \relative c'' {
|
||||||
|
\tempo "Moderately slow"
|
||||||
|
\key c \major
|
||||||
|
\numericTimeSignature \time 4/4
|
||||||
|
|
||||||
|
% pg 62
|
||||||
|
\repeat volta 2 {
|
||||||
|
r8 g g g g g( \tuplet 3/2 { g) g g } |
|
||||||
|
g4( \tuplet 3/2 { g8) g g } g g \tuplet 3/2 { g a b } | c4. c,8 c c c a' |
|
||||||
|
a4 \tuplet 3/2 { a8 g a } g4 d8 f | g4 r2. | r8 g g g g g( \tuplet 3/2 { g) g g } |
|
||||||
|
g4 \tuplet 3/2 { g8 g g } g g a b | c4 \tuplet 3/2 { c8 c c } c b c e |
|
||||||
|
|
||||||
|
% pg 63
|
||||||
|
e8 d4 d8 d a b c | d2 r8 g, e' d |
|
||||||
|
c2 r8 g f' e | d2 r8 g, g' f | e2 r8 c c' b |
|
||||||
|
a2 r8 a8 a a | a8 g4 c8 g f4 f8 |
|
||||||
|
\tuplet 3/2 { e8 ds e } \tuplet 3/2 { gs e d } c4 \tuplet 3/2 { c8 b c } | d4 \tuplet 3/2 { c8 b c } e4 \tuplet 3/2 { e8 e e } |
|
||||||
|
|
||||||
|
% pg 64
|
||||||
|
\time 2/4 e8 d d c | \time 4/4 c4. r8 r2 |
|
||||||
|
}
|
||||||
|
r8 b16 c d8 e c2 |
|
||||||
|
r8 d16 e f8 g e2 | r8 e16 ds e8 gs fs2 |
|
||||||
|
r8 fs16 es fs8 a gs2 | \time 2/4 r8 a, fs' e \bar "||" |
|
||||||
|
\key d \major \time 4/4 d2 r8 a8 g' fs | e2 r8 a,8 a' g |
|
||||||
|
|
||||||
|
% pg 65
|
||||||
|
fs2 r8 d d' cs | b2 r8 b b b | b8 a4 d8 a g4 g8 |
|
||||||
|
\tuplet 3/2 { fs f fs } \tuplet 3/2 { as fs e } d2 | \time 2/4 r8 fs fs e |
|
||||||
|
\time 4/4 d2. \tuplet 3/2 { fs8 fs e } | d2. \tuplet 3/2 { fs8 fs e } |
|
||||||
|
d4 \tuplet 3/2 { fs8 fs fs } e\fermata e d cs | a'1( | a1)
|
||||||
|
|
||||||
|
\bar "|."
|
||||||
|
}
|
||||||
|
|
||||||
|
decorations = \relative c'' {
|
||||||
|
% pg 62
|
||||||
|
\repeat volta 2 {
|
||||||
|
s8^\john s8 \mp s2. |
|
||||||
|
s1 | s1 |
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
s1 | s1 |
|
||||||
|
|
||||||
|
% pg 63
|
||||||
|
s1 | s2^\rit s2 |
|
||||||
|
s2^\atempo s2 | s1 | s1 |
|
||||||
|
s1 | s1 |
|
||||||
|
s1 | s1 |
|
||||||
|
|
||||||
|
% pg 64
|
||||||
|
\time 2/4 s2 | \time 4/4 s1 |
|
||||||
|
}
|
||||||
|
s1 |
|
||||||
|
s1 | s1 |
|
||||||
|
s1 | \time 2/4 s8^\men s8 \< s4 | %>
|
||||||
|
\time 4/4 s2 \ff s2 |s1 |
|
||||||
|
|
||||||
|
% pg 65
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
s1 | \time 2/4 s2 |
|
||||||
|
\time 4/4 s1 | s1 |
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
}
|
||||||
|
|
||||||
|
firstVerse = \lyricmode {
|
||||||
|
Like all sur -- vi -- vors, I once
|
||||||
|
thought when I'm home I won't give a damn. But now I know I'm
|
||||||
|
caught. I'll ne -- ver leave Vi -- et --nam. War is -- n't o -- ver when it
|
||||||
|
ends. Some pic -- tures nev -- er leave your mind. They are the fa -- ces of the
|
||||||
|
chil -- dren, the ones we left be -- hind. They're called Bui
|
||||||
|
Doi, the dust of life, con -- ceived in hell and born in
|
||||||
|
strife. They are the liv -- ing re -- min -- der of
|
||||||
|
all the good we failed to do. That's why we know deep in our hearts that they are
|
||||||
|
all our chil -- dren, too.
|
||||||
|
}
|
||||||
|
|
||||||
|
secondVerse = \lyricmode {
|
||||||
|
These kids hit the wall on ev -- 'ry
|
||||||
|
side. They don't be -- long in any -- y place. Their se -- cret they can't
|
||||||
|
hide, it's print -- ed on their face. I nev -- er thought one day I'd
|
||||||
|
plead for half breeds from a land that's torn. But then I saw a camp for
|
||||||
|
chil -- dren whose crime was be -- ing born. _ _ _
|
||||||
|
_ _ _ _ _ _ _ _ _ _ _ _
|
||||||
|
_ We owe them fath -- ers and a fam -- 'ly, a
|
||||||
|
lov -- ing home they nev -- er knew. Be -- cause we _ _ _ _ _ _ _ _
|
||||||
|
_ _ _ _
|
||||||
|
}
|
||||||
|
|
||||||
|
codaLyrics = \lyricmode {
|
||||||
|
These are souls in need.
|
||||||
|
They need us to give. Some -- one has to pay
|
||||||
|
for their chance to live. They're called Bui
|
||||||
|
Doi, the dust of life, con -- ceived in
|
||||||
|
hell and born in strife. They are the liv -- ing re -- min -- der of
|
||||||
|
all the good we failed to do. That's why we
|
||||||
|
know deep in our hearts, that's why we
|
||||||
|
know that they are all our chil -- dren too.
|
||||||
|
}
|
||||||
|
|
||||||
|
\book {
|
||||||
|
\score {
|
||||||
|
<<
|
||||||
|
\new Staff \with {
|
||||||
|
instrumentName = "Clarinet"
|
||||||
|
} {
|
||||||
|
\new Voice = "melody" {
|
||||||
|
<< \melody \decorations >>
|
||||||
|
}
|
||||||
|
}
|
||||||
|
\new Lyrics \lyricsto "melody" {
|
||||||
|
\set fontSize = #-2
|
||||||
|
<<
|
||||||
|
\firstVerse
|
||||||
|
\new Lyrics {
|
||||||
|
\set associatedVoice = "melody"
|
||||||
|
\set fontSize = #-2
|
||||||
|
\secondVerse
|
||||||
|
}
|
||||||
|
>>
|
||||||
|
\codaLyrics
|
||||||
|
}
|
||||||
|
>>
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,97 +1,11 @@
|
|||||||
\include "globals.ly"
|
\include "empty-chairs-at-empty-tables.ly"
|
||||||
|
|
||||||
\header {
|
|
||||||
title = "Empty Chairs at Empty Tables"
|
|
||||||
composer = "Music by Claude-Michel Schönberg"
|
|
||||||
poet = "Lyrics by Herbert Kretzmer"
|
|
||||||
}
|
|
||||||
|
|
||||||
melody = \relative c' {
|
|
||||||
\tempo "Moderato"
|
|
||||||
\numericTimeSignature \time 4/4
|
|
||||||
\key a \minor
|
|
||||||
|
|
||||||
r4 a'8 a b a g f | f e4. ~ e2 |
|
|
||||||
r4 a8 a b a g f | f g4. ~ g2 | r4 g8 g a g f e |
|
|
||||||
e8 d4. r4 e8 f | e4. e8 b4. c8 | e2. r4 |
|
|
||||||
r4 a8 a b a g f | f e4. ~ e2 | r4 a8 a b a g f |
|
|
||||||
%\pageBreak % Page 2 -------------------------------------------------------------------------------------------
|
|
||||||
e8 g4. ~ g2 | r4 g8 g a g f e | e d4. r4 e8 f |
|
|
||||||
e4. e8 b4. c8 | a1 | r2. c8 c | c c4. d4. c8 |
|
|
||||||
c8 a4. ~ a4 c8 d | ef4. f8 g4. f8 | f d4. ~ d4 d8 e |
|
|
||||||
f4. g8 a4. g8 | g e4. r8 c8 c d' | d2. d4 |
|
|
||||||
cs4 r8 cs8 d e r4 | f4. e8 d4. a8 | f2 r4. f'8 |
|
|
||||||
%\pageBreak % Page 3 -------------------------------------------------------------------------------------------
|
|
||||||
g4. f8 e4. d8 | a4 f2. | s4 c'8 c d c bf a |
|
|
||||||
a2. g4 | a1 | r4 a8 a b a g f | f e4. ~ e2 |
|
|
||||||
r4 a8 a b a g f | e g4. ~ g2 | r4 g8 g a g f e |
|
|
||||||
e d4. r4 e8 f | e4. e8 b4. b8 | e1 |
|
|
||||||
\key d \minor
|
|
||||||
d'4\rest d8 d e d c bf | bf a4. ~ a2 | r4 d8 d e d c bf |
|
|
||||||
%\pageBreak % Page 4 -------------------------------------------------------------------------------------------
|
|
||||||
a8 c4. ~ c2 | r4 c8 c d c bf a | a g4. ~ g4 a8 bf |
|
|
||||||
a4. a8 e4 f | a2. r4 | r4 d8 d e d f8. e16 |
|
|
||||||
e8 a,4. ~ a2 | r4 d8 d e d c bf | a c4. ~ c2 |
|
|
||||||
r4 c8 c d c bf a | a g4. ~ g4 a8 bf | a4. a8 e4. f8 |
|
|
||||||
d2 r2 ||
|
|
||||||
}
|
|
||||||
|
|
||||||
dynamics = \relative c' {
|
|
||||||
s4 \p s2. | s1 |
|
|
||||||
s1 | s1 | s1 |
|
|
||||||
s1 | s1 | s1 |
|
|
||||||
s1 | s1 | s1 |
|
|
||||||
%\pageBreak % Page 2 -------------------------------------------------------------------------------------------
|
|
||||||
s1 | s1 | s1 |
|
|
||||||
s1 | s1 | s2. s8 \mf s8 | s1 |
|
|
||||||
s1 | s1 | s1 |
|
|
||||||
s1 | s1 | s1 |
|
|
||||||
s4. s8 \< s2 | s4. \f s8 s4 \> s4 | s2 \! s2 |
|
|
||||||
%\pageBreak % Page 3 -------------------------------------------------------------------------------------------
|
|
||||||
s1 | s1 | s4 s8 \p s8 s2 |
|
|
||||||
s1 | s1 | s1 | s1 |
|
|
||||||
s1 | s1 | s1 |
|
|
||||||
s1 | s1 | s1 |
|
|
||||||
s4 s8 \mf s8 s2 | s1 | s1 |
|
|
||||||
%\pageBreak % Page 4 -------------------------------------------------------------------------------------------
|
|
||||||
s1 | s1 | s1 |
|
|
||||||
s1 | s1 | s1 |
|
|
||||||
s8 \f s8 s2. | s1 | s1 |
|
|
||||||
s4 s8 \> s8 s2 | s8 s4. \p s2 | s1 |
|
|
||||||
s2 \pp s2 |
|
|
||||||
}
|
|
||||||
|
|
||||||
words = \lyricmode {
|
|
||||||
There's a grief that can't be spo -- ken,
|
|
||||||
There's a pain goes on and on._ _ Emp -- ty chairs at emp -- ty
|
|
||||||
ta -- bles, now my friends are dead and gone.
|
|
||||||
Here they talked of rev -- o -- lu -- tion._ Here it was they lit the
|
|
||||||
%\pageBreak % Page 2 -------------------------------------------------------------------------------------------
|
|
||||||
flame._ _ Here they sang a -- bout to -- mor -- row, and to --
|
|
||||||
mor -- row nev -- er came. From the ta -- ble in the
|
|
||||||
cor -- ner_ they could see a world re -- born._ _ And they
|
|
||||||
rose with voi -- ces ring -- ing. And I can hear them
|
|
||||||
now the ve -- ry words that they had sung be --
|
|
||||||
%\pageBreak % Page 3 -------------------------------------------------------------------------------------------
|
|
||||||
came their last com -- mun -- ion on the lon -- ly bar -- ri --
|
|
||||||
cade at dawn. Oh my friends my friends for -- give me._
|
|
||||||
That I live and you are gone._ _ There's a grief that can't be
|
|
||||||
spo -- ken. There's a pain goes on and on.
|
|
||||||
Phan -- tom fa -- ces at the win -- down._ Phan -- tom sha -- dows on the
|
|
||||||
%\pageBreak % Page 4 -------------------------------------------------------------------------------------------
|
|
||||||
floor._ _ Emp -- ty chairs at emp -- ty ta -- bles,_ where my
|
|
||||||
friends will meet no more. Oh, my friends, my friends don't
|
|
||||||
ask me what your sac -- ri -- fice was for. _
|
|
||||||
Emp -- ty chairs and emp -- ty ta -- bles where my friends will sing no
|
|
||||||
more.
|
|
||||||
}
|
|
||||||
|
|
||||||
\book {
|
\book {
|
||||||
\score {
|
\score {
|
||||||
\new Staff \with {
|
\new Staff \with {
|
||||||
instrumentName = Clarinet
|
instrumentName = Clarinet
|
||||||
} {
|
} {
|
||||||
<< \melody \dynamics >>
|
\melody
|
||||||
|
|
||||||
\addlyrics {
|
\addlyrics {
|
||||||
\set fontSize = #-2
|
\set fontSize = #-2
|
||||||
|
|||||||
@@ -1,51 +1,4 @@
|
|||||||
\include "globals.ly"
|
\include "feed-the-birds.ly"
|
||||||
|
|
||||||
\header {
|
|
||||||
title = "Feed the Birds"
|
|
||||||
composer = "by Richard & Robert Sherman"
|
|
||||||
}
|
|
||||||
|
|
||||||
melody = \relative c'' {
|
|
||||||
\tempo 4 = 60
|
|
||||||
\time 3/4
|
|
||||||
\key g \major
|
|
||||||
|
|
||||||
b4 c b | a2 g8 a | b4 c b | b2. |
|
|
||||||
b4 c b | a2 g8 fs | e4 fs g | fs2 fs4 |
|
|
||||||
e fs g | fs e ds e2.( | e4) r g8 a | b4 c b |
|
|
||||||
a2 g8 fs | d4 fs g | fs2. | e2 fs8 e |
|
|
||||||
ds2 b8 fs' | e2.( | e4) r r | d4 c'4. c8 |
|
|
||||||
c8 d c2 | c4 b4. as8 | b2. | d,4 c' c |
|
|
||||||
c2 d8 c | b2.( | b4) r b | b4 c b |
|
|
||||||
a4 g4. fs8 | e4 fs g | fs2 g8 fs | e2 e4 |
|
|
||||||
ds8 b4. fs'4 | e2.( | d2) r4 | g,2( g8) b |
|
|
||||||
d2. | e8 g4.( g8) e | d2. | e8 g4.( g4) |
|
|
||||||
b8 g4.( g4) | g8 fs4.( fs8) g | a2 r4 |
|
|
||||||
g,2( g8) b | d2. | e4 g4. e8 | d2. |
|
|
||||||
e4 g4. e8 | d2 g4 | fs2 g8 a | g4 r g8 fs |
|
|
||||||
e2 ds8 e | b'4 a4. fs8 | e2 ds8 e | fs4 b,4. b8 |
|
|
||||||
e2 ds8 e | b'2 fs4 | g2.( | g4) r g |
|
|
||||||
g4 fs g | d'4 c4. a8 | g2 fs8 g | a4 d,4. a'8 |
|
|
||||||
b2 c8 b | a2 g8 fs | e2.( | d2) r4 |
|
|
||||||
g,2( g8) b | d2 d4 | e8 g4.( g8) e | d2. |
|
|
||||||
e8 g4.( g4) | b8 g4.( g8) g | g4 fs g | a2. |
|
|
||||||
g,2( g8) b | d2. | e8 g4.( g8) a | b2. |
|
|
||||||
b8 g4.( g4) | b8 g4.( g4) | b8 g4.( g8) a | g2.\fermata \bar "|."
|
|
||||||
}
|
|
||||||
|
|
||||||
words = \lyricmode {
|
|
||||||
_ _ _ _ _ _ _ _ _ _
|
|
||||||
Ear -- ly each day to the steps of Saint Paul’s the lit -- tle old bird wo -- man comes.
|
|
||||||
In her own spe -- cial way to the peo -- ple she calls, “Come, buy my bags full of crumbs.”
|
|
||||||
Come feed the lit -- tle birds, show them you care, and you’ll be glad if you do.
|
|
||||||
Their young ones are hun -- gry their nests are so bare; all it takes is tup -- pence from you.
|
|
||||||
Feed the birds, tup -- pence a bag, tup -- pence, tup -- pence, tup -- pence a bag.
|
|
||||||
“Feed the birds,” that’s what she cries, while o -- ver -- head, her birds fill the skies.
|
|
||||||
All a -- round the ca -- the -- dral the saints and a -- pos -- tles look down as she sells her wares.
|
|
||||||
Al -- though you can't see it, you know they are smi -- ling each time some -- one shows that he cares.
|
|
||||||
Though her words are sim -- ple and few, lis -- ten, lis -- ten, she's call -- ing to you:
|
|
||||||
“Feed the birds, tup -- pence a bag, tup -- pence, tup -- pence, tup -- pence a bag.”
|
|
||||||
}
|
|
||||||
|
|
||||||
\book {
|
\book {
|
||||||
\score {
|
\score {
|
||||||
@@ -53,7 +6,6 @@ words = \lyricmode {
|
|||||||
instrumentName = "Clarinet"
|
instrumentName = "Clarinet"
|
||||||
} {
|
} {
|
||||||
\melody
|
\melody
|
||||||
|
|
||||||
\addlyrics {
|
\addlyrics {
|
||||||
\set fontSize = #-2
|
\set fontSize = #-2
|
||||||
\words
|
\words
|
||||||
|
|||||||
@@ -0,0 +1,65 @@
|
|||||||
|
\include "globals.ly"
|
||||||
|
|
||||||
|
\header {
|
||||||
|
title = "German Dance"
|
||||||
|
composer = "J. Haydn"
|
||||||
|
}
|
||||||
|
|
||||||
|
fine = \markup { \italic \fontsize #-2 "Fine" }
|
||||||
|
dcalfine = \markup { \italic \fontsize #-2 "D.C. al Fine" }
|
||||||
|
trio = \markup { \bold \fontsize #-1 "TRIO" }
|
||||||
|
|
||||||
|
melody = \relative c' {
|
||||||
|
\tempo "Allegro giusto"
|
||||||
|
\time 3/4
|
||||||
|
\key g \major
|
||||||
|
|
||||||
|
\repeat volta 2 {
|
||||||
|
s2 b'8( c) | d4-! d-! b8( c) | d4-! d-! g-- | fs8 g a g fs e | d4 d a8( b) |
|
||||||
|
c4-! c-! e8( d) | c4-! c-! c-- | b8 c d c b a | g4 g s |
|
||||||
|
}
|
||||||
|
\break
|
||||||
|
\repeat volta 2 {
|
||||||
|
s2 b4 | b8( c b) a'-. g-. fs-. | e4 e r | r2. | r2 g,4 |
|
||||||
|
g8( a g) f'-. e-. d-. | e8( fs g) e-. d-. c-. | b8( d) b( g) a-. fs-. | g4 g s |
|
||||||
|
}
|
||||||
|
\break
|
||||||
|
\repeat volta 2 {
|
||||||
|
s2 d4 | g4( fs g | a2.) | d,2. | b8( d c e d4) |
|
||||||
|
g4( fs g) | a2. | d,2. | g,2 s4 |
|
||||||
|
}
|
||||||
|
\break
|
||||||
|
\repeat volta 2 {
|
||||||
|
s2 b'4 | c4( b c | a2) a4 | d4( cs d | b2) d,4 |
|
||||||
|
g4( fs g | a2.) | d,2. | g,2 s4 |
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
decoration = \relative c' {
|
||||||
|
\repeat volta 2 {
|
||||||
|
s2 s8 \p s8 | s2. | s2 s4 \f | s2. | s2 s8 \p s8 |
|
||||||
|
s2. | s2 s4 \f | s2. s2. |
|
||||||
|
}
|
||||||
|
\repeat volta 2 {
|
||||||
|
s2 s4 \f| s2. | s2. | s2. | s2. |
|
||||||
|
s2. | s2. | s2. | s2.^\fine |
|
||||||
|
}
|
||||||
|
\repeat volta 2 {
|
||||||
|
s2^\trio s4 \p | s2. | s2. | s2. | s2. |
|
||||||
|
s2. | s2. | s2. | s2. |
|
||||||
|
}
|
||||||
|
\repeat volta 2 {
|
||||||
|
s2 s4 \f | s2. | s2. | s2. | s2 s4 \p |
|
||||||
|
s2. | s2. | s2. | s2.^\dcalfine |
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
\book {
|
||||||
|
\score {
|
||||||
|
\new Staff \with {
|
||||||
|
instrumentName = "Clarinet"
|
||||||
|
} {
|
||||||
|
<< \melody \decoration >>
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,37 +1,4 @@
|
|||||||
% Copied from Easy Classical Clarinet Solos by Javier Marcó
|
\include "greensleeves-base.ly"
|
||||||
% pg 19
|
|
||||||
|
|
||||||
\include "globals.ly"
|
|
||||||
|
|
||||||
\header {
|
|
||||||
title = "Greensleeves"
|
|
||||||
composer = "Traditional"
|
|
||||||
arranger = "arr. Javier Marcó"
|
|
||||||
}
|
|
||||||
|
|
||||||
melody = \relative c' {
|
|
||||||
\tempo "Andante"
|
|
||||||
\time 3/4
|
|
||||||
\key c \major
|
|
||||||
|
|
||||||
r2 a4 \mf |
|
|
||||||
|
|
||||||
\repeat volta 2 {
|
|
||||||
c2 d4 | e4. f8 e4 | d2 b4 | g4. a8 b4 |
|
|
||||||
c2 a4 | a4. gs8 a4 | b2 gs4 | e2 a4 |
|
|
||||||
c2 d4 | e4. f8 e4 | d2 b4 | g4. a8 b4 |
|
|
||||||
c4. b8 a4 | gs4. fs8 gs4 | a2 a4 |
|
|
||||||
}
|
|
||||||
|
|
||||||
\alternative {{ a2 a4 } { a2. }}
|
|
||||||
|
|
||||||
\repeat volta 2 {
|
|
||||||
g'2. | g4. f8 e4 | d2 b4 | g4. a8 b4 |
|
|
||||||
c2 a4 | a4. fs8 a4 | b2 gs4 | e2. |
|
|
||||||
g'2. | g4. f8 e4 | d2 b4 | g4. a8 b4 |
|
|
||||||
c4. b8 a4 | gs4. fs8 gs4 | a2 a4 | a2. |
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
\book {
|
\book {
|
||||||
\score {
|
\score {
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
\header {
|
\header {
|
||||||
title = "Hatikvah"
|
title = "Hatikvah"
|
||||||
composer = "Traditional"
|
composer = "Traditional"
|
||||||
arranger = "arr. John Davies & Paul Reade"
|
arranger = "arr. Paul Reade"
|
||||||
}
|
}
|
||||||
|
|
||||||
melody = \relative c' {
|
melody = \relative c' {
|
||||||
|
|||||||
@@ -0,0 +1,161 @@
|
|||||||
|
% Copied from "Easy Piano: Miss Siagon"
|
||||||
|
% pgs. 44-49
|
||||||
|
|
||||||
|
\include "globals.ly"
|
||||||
|
|
||||||
|
\header {
|
||||||
|
title = "I'd Give My Life for You"
|
||||||
|
composer = "music by Claude-Michel Schönberg"
|
||||||
|
poet = "lyrics by Alain Boublil"
|
||||||
|
}
|
||||||
|
|
||||||
|
atempo = \markup \italic \fontsize #-1 "a tempo"
|
||||||
|
dramatically = \markup \italic \fontsize #-1 "dramatically"
|
||||||
|
rit = \markup \italic \fontsize #-1 "rit."
|
||||||
|
|
||||||
|
melody = \relative c' {
|
||||||
|
\tempo "Slowly, with expression"
|
||||||
|
\key bf \major
|
||||||
|
\numericTimeSignature \time 4/4
|
||||||
|
|
||||||
|
% pg 44
|
||||||
|
\repeat volta 2 {
|
||||||
|
r8 d d c c c c bf |
|
||||||
|
bf2 c | r8 d f g d c c d |
|
||||||
|
c8( bf4.) r2 | r4 bf8 c \tuplet 3/2 { c c bf } c d |
|
||||||
|
|
||||||
|
% pg 45
|
||||||
|
d2 r | r8 bf bf a a a c bf |
|
||||||
|
}
|
||||||
|
\alternative {{ g4 r2. | } { g2 r2 | }} r8 g' g f f f f ef |
|
||||||
|
g2 r | r8 g g f f g f ef |
|
||||||
|
g8 f ef4 \tuplet 3/2 { r8 f f } \tuplet 3/2 { f f f } | f2 \tuplet 3/2 { r8 g g } \tuplet 3/2 { g g g } |
|
||||||
|
|
||||||
|
% pg 46
|
||||||
|
g4. bf8 bf bf bf bf | bf2 r4 r8 ef8 |
|
||||||
|
\key af \major \time 6/4 \tuplet 3/2 { c8[ c c] } c[ c] bf[ bf bf af] af4. bf8 |
|
||||||
|
\time 4/4 \tuplet 3/2 { bf8[ bf bf] } bf[ bf] af af af g |
|
||||||
|
g2 r | \key f \major r4 a8 a g4 g8 g |
|
||||||
|
g8 f f4 g2 | r4 \tuplet 3/2 { a8 c d } a g g a |
|
||||||
|
|
||||||
|
% pg 47
|
||||||
|
g8( f4.) r2 | r8 f g f g f g a |
|
||||||
|
a4 r4 r2 | r8 f f f e e g f |
|
||||||
|
d4 r4 r2 | r8 d f d d c4. | r8 d f g c,2 |
|
||||||
|
\tuplet 3/2 { a8 a a' } a g f g a4 | \time 6/4 \tuplet 3/2 { c,8[ c bf'] } a[ g] f[ g] a2. |
|
||||||
|
|
||||||
|
% pg 48
|
||||||
|
\time 4/4 \tuplet 3/2 { f8[ df' df] } df df c bf c4 | \tuplet 3/2 { f,8[ df' df] } df df c bf c4 |
|
||||||
|
\tuplet 3/2 { c8[ c c] } c[ c] bf af bf4 |
|
||||||
|
\time 6/4 \tuplet 3/2 { af8 af af } af4 \tuplet 3/2 { g8 g f } g4 r \tuplet 3/2 { g8 g a } |
|
||||||
|
\time 4/4 a2 r | r1 | \key g \major r8 b b b a a a a |
|
||||||
|
g2 a | r8 b d e b a a b |
|
||||||
|
|
||||||
|
% pg 49
|
||||||
|
a8( g4.) r2 | r8 g a g a g a b | b4 r2. |
|
||||||
|
r8 g g g fs fs a g | e4 r2. | r8 g a g a g a b |
|
||||||
|
\time 2/4 b2 | \time 4/4 r8 fs fs fs fs fs a g | e2 r2 |
|
||||||
|
|
||||||
|
\bar "|."
|
||||||
|
}
|
||||||
|
|
||||||
|
decorations = \relative c' {
|
||||||
|
% pg 44
|
||||||
|
\repeat volta 2 {
|
||||||
|
s8 s8 \mp s2. |
|
||||||
|
s1 | s1 |
|
||||||
|
s1 | s1 |
|
||||||
|
|
||||||
|
% pg 45
|
||||||
|
s1 | s1 |
|
||||||
|
}
|
||||||
|
\alternative {{ s1 } { s1 }} s1 |
|
||||||
|
s1 | s1 |
|
||||||
|
s1 | s1 |
|
||||||
|
|
||||||
|
% pg 46
|
||||||
|
s1 | s2^\rit s4 s8 s8 \bar "||" |
|
||||||
|
\time 6/4 \tuplet 3/2 { s8^\atempo \f s s } s4 s1 | \time 4/4 s1 |
|
||||||
|
s1 \bar "||" | s1 |
|
||||||
|
s1 | s1 |
|
||||||
|
|
||||||
|
% pg 47
|
||||||
|
s1 | s1 |
|
||||||
|
s1 | s1 |
|
||||||
|
s4 \> s s s | s8 s8 \p s2. | s1 |
|
||||||
|
s1 \bar "||" | \time 6/4 s1. |
|
||||||
|
|
||||||
|
% pg 48
|
||||||
|
\time 4/4 s1 | s1 |
|
||||||
|
s1 | \time 6/4 s4 s s^\rit s s s |
|
||||||
|
\time 4/4 s4^\atempo s2. | s1 \bar "||" | s1 |
|
||||||
|
s1 | s1 |
|
||||||
|
|
||||||
|
% pg 49
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
\time 2/4 s2 | \time 4/4 s4^\dramatically s s s | s4. \ff s8 s2 |
|
||||||
|
|
||||||
|
\bar "|."
|
||||||
|
}
|
||||||
|
|
||||||
|
firstVerse = \lyricmode {
|
||||||
|
You who I cra -- dled in my
|
||||||
|
arms. You, ask -- ing as lit -- tle as you
|
||||||
|
can. Lit -- tle snip of a lit -- tle
|
||||||
|
man, I know I'd give my life for
|
||||||
|
}
|
||||||
|
|
||||||
|
secondVerse = \lyricmode {
|
||||||
|
You did -- n't ask me to be
|
||||||
|
born, you. Why should you learn of war or
|
||||||
|
pain? To make sure you're not hurt a --
|
||||||
|
gain, I swear I'd give my life for
|
||||||
|
}
|
||||||
|
|
||||||
|
codaLyrics = \lyricmode {
|
||||||
|
you. you. I've tast -- ed love be -- yond all
|
||||||
|
fear. And you should know it's love that
|
||||||
|
brought you here! And in one per -- fect night when the stars burned like
|
||||||
|
new I knew what I must do. I'll
|
||||||
|
give you a mil -- lion things I'll nev -- er own. I'll give you a world to con -- quer when you're
|
||||||
|
grown. You will be who you
|
||||||
|
want to be. You can choose what ev -- er heav -- en
|
||||||
|
grants. As long as you can have your
|
||||||
|
chance, I swear I'll give my life for
|
||||||
|
you. Some -- times I wake up reach -- ing for him.
|
||||||
|
I feel his sha -- dow brush my head, but there's just moon -- light on my bed.
|
||||||
|
Was he a ghost? Was he a lie that made my bod -- y laugh and cry?
|
||||||
|
Then by my side the proof I see, his lit -- tle one. Gods of the sun, bring him to
|
||||||
|
me. You will be who you want to
|
||||||
|
be. You can choose what -- ev -- er heav -- en
|
||||||
|
grants. As long as you can have your chance,
|
||||||
|
I swear I'll give my life for you. No one can stop what I must
|
||||||
|
do. I swear I'll give my life for you.
|
||||||
|
}
|
||||||
|
|
||||||
|
\book {
|
||||||
|
\score {
|
||||||
|
<<
|
||||||
|
\new Staff \with {
|
||||||
|
instrumentName = "Clarinet"
|
||||||
|
} {
|
||||||
|
\new Voice = "melody" {
|
||||||
|
<< \melody \decorations >>
|
||||||
|
}
|
||||||
|
}
|
||||||
|
\new Lyrics \lyricsto "melody" {
|
||||||
|
\set fontSize = #-2
|
||||||
|
<<
|
||||||
|
\firstVerse
|
||||||
|
\new Lyrics {
|
||||||
|
\set associatedVoice = "melody"
|
||||||
|
\set fontSize = #-2
|
||||||
|
\secondVerse
|
||||||
|
}
|
||||||
|
>>
|
||||||
|
\codaLyrics
|
||||||
|
}
|
||||||
|
>>
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -8,7 +8,7 @@ melody = \relative c' {
|
|||||||
\tempo "With melancholy"
|
\tempo "With melancholy"
|
||||||
\key g \major
|
\key g \major
|
||||||
\time 6/8
|
\time 6/8
|
||||||
|
|
||||||
d8. e16 d8 g4 g8 | a4 d8 b4. | a4 e'8 d4 c8 | b8. a16 g8 e4. |
|
d8. e16 d8 g4 g8 | a4 d8 b4. | a4 e'8 d4 c8 | b8. a16 g8 e4. |
|
||||||
d8. e16 d8 g4 g8 | a4 e'8 d4 e16 fs | g8. fs16 e8 fs4 d8 | b4. a4 e8 |
|
d8. e16 d8 g4 g8 | a4 e'8 d4 e16 fs | g8. fs16 e8 fs4 d8 | b4. a4 e8 |
|
||||||
d8. e16 d8 g4 g8 | a4 d8 b4. | a4 e'8 d4 c8 | b8. a16 g8 e4 fs16 e16 |
|
d8. e16 d8 g4 g8 | a4 d8 b4. | a4 e'8 d4 c8 | b8. a16 g8 e4 fs16 e16 |
|
||||||
|
|||||||
@@ -1,47 +1,11 @@
|
|||||||
\include "globals.ly"
|
\include "nature-boy.ly"
|
||||||
|
|
||||||
\header {
|
|
||||||
title = "Nature Boy"
|
|
||||||
composer = "music by: Eden Ahbez"
|
|
||||||
poet = "sung by: Nat King Cole"
|
|
||||||
}
|
|
||||||
|
|
||||||
melody = \relative c' {
|
|
||||||
\tempo Slowly
|
|
||||||
\key g \major
|
|
||||||
\time 3/4
|
|
||||||
|
|
||||||
s2 s8 b | b'8. g16 e2( | e8) b fs' g a c | b8. g16 e2( |
|
|
||||||
e8) b fs' g a c | b8 e ds2 | b8 d cs2 | b8 c b4( b8) e, |
|
|
||||||
fs2. | b8 a fs2( | fs2) r8 b, | a'8 g e2( |
|
|
||||||
e2) r8 as,8 | g'8 fs cs2( | cs2) d4 | ds2.( |
|
|
||||||
d2) r8 b | b'8. g16 e2( | e8) b fs' g a c | b8. g16 e2( |
|
|
||||||
e8) b fs' g a c | b8 e ds2 | b8 d cs2 | b8 c b4( b8) e, |
|
|
||||||
fs2. | b8 a fs2( | fs2) r8 b,8 | a'8 g e2( |
|
|
||||||
e2) r8 as,8 | g'8 fs cs4( cs8) c | e8 ds4. c8. b16 | e2.( |
|
|
||||||
e2) r4 |
|
|
||||||
}
|
|
||||||
|
|
||||||
decoration = \relative c' {
|
|
||||||
\time 3/4
|
|
||||||
|
|
||||||
s2 s4 \bar "||" | s2 s4 | s2 s4 | s2 s4 |
|
|
||||||
s2 s4 | s2 s4 | s2 s4 | s2 s4 |
|
|
||||||
s2 s4 | s2 s4 | s2 s4 | s2 s4 |
|
|
||||||
s2 s4 | s2 s4 | s2 s4 | s2 s4 |
|
|
||||||
s2 s4 \bar "||" | s2 s4 | s2 s4 | s2 s4 |
|
|
||||||
s2 s4 | s2 s4 | s2 s4 | s2 s4 |
|
|
||||||
s2 s4 | s2 s4 | s2 s4 | s2 s4 |
|
|
||||||
s2 s4 | s2 s4 | s2 s4 | s2 s4 |
|
|
||||||
s2 s4 \bar "|." |
|
|
||||||
}
|
|
||||||
|
|
||||||
\book {
|
\book {
|
||||||
\score {
|
\score {
|
||||||
\new Staff \with {
|
\new Staff \with {
|
||||||
instrumentName = "Clarinet"
|
instrumentName = "Clarinet"
|
||||||
} {
|
} {
|
||||||
<< \melody \decoration >>
|
<< \melody >>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
\header {
|
\header {
|
||||||
title = "Serenade: Beautiful Dreamer"
|
title = "Serenade: Beautiful Dreamer"
|
||||||
composer = "Stephen Foster"
|
composer = "Stephen Foster"
|
||||||
arranger = "arr. John Davies & Paul Reade"
|
arranger = "arr. Paul Reade"
|
||||||
}
|
}
|
||||||
|
|
||||||
melody = \relative c'' {
|
melody = \relative c'' {
|
||||||
|
|||||||
@@ -1,46 +1,14 @@
|
|||||||
% Copied from First Book of Clarinet Solos by John Davies and Paul Reade
|
% Copied from First Book of Clarinet Solos by John Davies and Paul Reade
|
||||||
% pg 2
|
% pg 2
|
||||||
|
|
||||||
\include "globals.ly"
|
\include "song-of-the-volga-boatmen-base.ly"
|
||||||
|
|
||||||
\header {
|
|
||||||
title = "Song of the Volga Boatmen"
|
|
||||||
composer = "Traditional"
|
|
||||||
arranger = "arr. John Davies & Paul Reade"
|
|
||||||
}
|
|
||||||
|
|
||||||
melody = \relative c' {
|
|
||||||
\tempo "Lento e sostenuto"
|
|
||||||
\numericTimeSignature \time 2/2
|
|
||||||
\key a \minor
|
|
||||||
|
|
||||||
c4 a d2 | a2 r | c4 a d2 | a2 r | c2 f | e4 f8-- e d2 |
|
|
||||||
c4 a d2 | a2 r | c2. c4 | c4-- bf a g | a2 c | a2 r | c2. c4 |
|
|
||||||
c4-- bf a g | a2 c | a2 r | d2 d4 d | a2 a | f'2 e4 d | c2 a |
|
|
||||||
d2 f | d4 f8-- e d2 | c4 a d2 | a2 r | c4 a d2 | a2 r |
|
|
||||||
|
|
||||||
\bar "|."
|
|
||||||
}
|
|
||||||
|
|
||||||
decoration = \relative c' {
|
|
||||||
s4 \mf \< s4 s2 \! \> | s2 s2 \! | s4 \< s4 s2 \! \> | s2 \! s2 | s1 | s1 |
|
|
||||||
s4 \< s2 s4 \! \> | s2 s2 \! | s2. \p s4 | s4 s4 \< s4 s4 \! | s2 \> s2 | s2 \! s2 | s1 |
|
|
||||||
s4 s4 \< s4 s4 \! | s2 \> s2 \! | s1 | s2 \f s2 | s1 | s1 | s1 |
|
|
||||||
s2 \cresc s2 | s1 \! | s4 s4 s2 \dim | s2 s2 \! | s4 \< s4 \2 \! \> | s2 s2 \! |
|
|
||||||
}
|
|
||||||
|
|
||||||
\book {
|
\book {
|
||||||
\score {
|
\score {
|
||||||
\layout {
|
|
||||||
\context {
|
|
||||||
\Score
|
|
||||||
proportionalNotationDuration = #(ly:make-moment 1/4)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
\new Staff \with {
|
\new Staff \with {
|
||||||
instrumentName = "Clarinet"
|
instrumentName = "Clarinet"
|
||||||
} {
|
} {
|
||||||
<< \melody \decoration >>
|
\melody
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,126 @@
|
|||||||
|
% Copied from "Easy Piano: Miss Siagon"
|
||||||
|
% pgs. 28-32
|
||||||
|
|
||||||
|
\include "globals.ly"
|
||||||
|
|
||||||
|
\header {
|
||||||
|
title = "Sun and Moon"
|
||||||
|
composer = "music by Claude-Michel Schönberg"
|
||||||
|
poet = "lyrics by Alain Boublil"
|
||||||
|
}
|
||||||
|
|
||||||
|
both = \markup { \bold \fontsize #-1 "BOTH:" }
|
||||||
|
building = \markup { \italic \fontsize #-2 "building in excitement" }
|
||||||
|
chris = \markup { \bold \fontsize #-1 "CHRIS:" }
|
||||||
|
kim = \markup { \bold \fontsize #-1 "KIM:" }
|
||||||
|
|
||||||
|
melody = \relative c'' {
|
||||||
|
\tempo "Sweetly"
|
||||||
|
\key f \major
|
||||||
|
\numericTimeSignature \time 4/4
|
||||||
|
|
||||||
|
% pg 28
|
||||||
|
g4. a8( a2) | g4. a8( a4) c4 | f,4. g8( g2) |
|
||||||
|
f4. g8( g) f g c | f,4. g8( g2) | f4. g8( g4) c |
|
||||||
|
e,4. f8( f2) | e4. f8( f4) a | d,1 |
|
||||||
|
|
||||||
|
% pg 29
|
||||||
|
c4. f8( f4) c4 | bf4. f'8( f4) bf,4 | g1 |
|
||||||
|
g'4. a8( a2) | g4. a8( a4) c4 | c4. d8( d2) |
|
||||||
|
c4. e8( e4) f4 | f4. e8( e4) d | d4. c8( c4) bf |
|
||||||
|
bf4. a8( a4) g | f1 | d4. f8( f4) d |
|
||||||
|
|
||||||
|
% pg 30
|
||||||
|
c4. f8( f4) c4 | bf4. f'8( f4) bf | g2. f4 |
|
||||||
|
f1 | e4. f8( f2) | e4. f8( f4) g |
|
||||||
|
a1 | a4. b8( b2) | a4. b8( b4) c |
|
||||||
|
c2. r8 d8 | d4. c8 c4. d8 | d4. c8 c4. ef8 |
|
||||||
|
|
||||||
|
% pg 31
|
||||||
|
ef4. d8 d4. ef8 | ef4. d8 d2 | r4 bf8 c d4 ef8 f |
|
||||||
|
\key ef \major g1 | r1 |
|
||||||
|
|
||||||
|
% pg 32
|
||||||
|
\tempo "Tranquil" f,4. g8( g2) | f4. g8( g4) bf | bf4. c8( c2) |
|
||||||
|
bf4. c8( c2) | bf4. ef8( ef4) bf | af4. ef8( ef4) af |
|
||||||
|
f2. ef4 | ef1 | d4. ef8( ef2) |
|
||||||
|
ef4. f8( f2) | f2( bf) | g1 |
|
||||||
|
|
||||||
|
\bar "|."
|
||||||
|
}
|
||||||
|
|
||||||
|
decorations = \relative c'' {
|
||||||
|
% pg 28
|
||||||
|
s4.^\kim \p s8 s2 | s1 | s1 |
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
|
||||||
|
% pg 29
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
s4.^\chris s8 s2 | s1 | s1 |
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
|
||||||
|
% pg 30
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
s1 | s4.^\kim s8 s2 | s1 |
|
||||||
|
s1 | s4.^\chris s8 s2 | s1 |
|
||||||
|
s2. s8 s8^\kim | s4.^\building s8 s4. s8^\chris | s4. s8 s4. s8^\kim |
|
||||||
|
|
||||||
|
% pg 31
|
||||||
|
s4. s8 s4. s8^\chris | s1 | s4 \< s8^\both s8 s2 | %>
|
||||||
|
s1 \ff | s1 |
|
||||||
|
|
||||||
|
% pg 32
|
||||||
|
s4.^\kim \p s8 s2 | s1 | s1 |
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
s1 | s1 | s4.^\both s8 s2 |
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
}
|
||||||
|
|
||||||
|
firstVerse = \lyricmode {
|
||||||
|
% pg 28
|
||||||
|
You are sun -- light and I moon,
|
||||||
|
joined by the gods of for -- tune, mid -- night and
|
||||||
|
high noon shar -- ing the sky.
|
||||||
|
|
||||||
|
% pg 29
|
||||||
|
We have been blessed, you and I.
|
||||||
|
You are here like a mys -- t'ry
|
||||||
|
I'm from a world that's so dif -- f'rent from
|
||||||
|
all that you are. How in the
|
||||||
|
|
||||||
|
% pg 30
|
||||||
|
light of the night did we come so
|
||||||
|
far? Out -- side day starts to
|
||||||
|
dawn. Your moon still floats on
|
||||||
|
high. The birds a -- wake. The stars shine, too. My
|
||||||
|
|
||||||
|
% pg 31
|
||||||
|
hands still shake. I reach for you. and we meet in the
|
||||||
|
sky.
|
||||||
|
|
||||||
|
% pg 32
|
||||||
|
You are sun -- light and I moon,
|
||||||
|
joined here bright -- 'ning the sky with the
|
||||||
|
flame of love. Made of
|
||||||
|
sun -- light, moon -- light.
|
||||||
|
}
|
||||||
|
|
||||||
|
\book {
|
||||||
|
\score {
|
||||||
|
<<
|
||||||
|
\new Staff \with {
|
||||||
|
instrumentName = "Clarinet"
|
||||||
|
} {
|
||||||
|
\new Voice = "melody" {
|
||||||
|
<< \melody \decorations >>
|
||||||
|
}
|
||||||
|
}
|
||||||
|
\new Lyrics \lyricsto "melody" {
|
||||||
|
\set fontSize = #-2
|
||||||
|
\firstVerse
|
||||||
|
}
|
||||||
|
>>
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
\include "globals.ly"
|
||||||
|
|
||||||
|
\header {
|
||||||
|
title = "To a Wild Rose"
|
||||||
|
composer = "Edward MacDowell"
|
||||||
|
}
|
||||||
|
|
||||||
|
cresc = \markup { \italic \fontsize #-2 "cresc." }
|
||||||
|
dim = \markup { \italic \fontsize #-2 "dim." }
|
||||||
|
pocomarc = \markup { \italic \fontsize #-2 "poco marc." }
|
||||||
|
|
||||||
|
melody = \relative c'' {
|
||||||
|
\tempo "Simplice, con tenerezza"
|
||||||
|
\numericTimeSignature \time 2/4
|
||||||
|
\key g \major
|
||||||
|
|
||||||
|
b8( d d4) | a8( d d4) | b8( d e g | e4 b) | e,8( a a4) | b4( fs) |
|
||||||
|
e8( a a4 | g2) | b8( d d4) | a8( d d4) | b8( d e g | fs4 e) | g4( e) |
|
||||||
|
d4( b) | e,8( a a4 | g2) | r2 | r2 | r2 | r2 |
|
||||||
|
d'8( b b4) | cs2 | d8( b b4) | cs2 | d2( | d2)( |
|
||||||
|
d4) r | r2 | b8( d d4) | a8( d d4) | b8( d e g | e4 b) | e,8( a a4) |
|
||||||
|
b4( fs) | e8( a a4 | g2) | r2 | r2 | c2( |
|
||||||
|
b4) d--\(( | d4.) cs8 | c8 g g4\) | b8( a g a | b4 d) | r2 |
|
||||||
|
r4 g,( | e2 | d2) | e8( g4.)( | g2)( | g4) r |
|
||||||
|
\bar "|."
|
||||||
|
}
|
||||||
|
|
||||||
|
decoration = \relative c' {
|
||||||
|
s8 \mp s8 s4 | s2 | s8 \< s8 s4 \! | s4 \> s4 \! | s8 \mp s8 s4 | s2 |
|
||||||
|
s2 | s2 | s2 | s2 | s2 | s2 | s2 |
|
||||||
|
s2 | s2 | s2 | s2 | s2 | s2 | s2 |
|
||||||
|
s8 \mp s8_\pocomarc s4 | s2_\cresc | s2 | s2 | s2 \f \> | s2 |
|
||||||
|
s4 \! s4 | s2 | s8 \mp s8 s4 | s2 | s8 \< s8 s4 \! | s4 \> s4 \! | s8 \mp s8 s4 |
|
||||||
|
s2 | s2 | s2 | s2 | s2 | s2 \pp |
|
||||||
|
s4 s4 \mp | s2 | s2 | s8_\dim s8 s4 | s2 | s2 |
|
||||||
|
s4 s4 \pp | s2 | s2 | s8 s4. \> | s2 | s4 \! s4 |
|
||||||
|
}
|
||||||
|
|
||||||
|
\book {
|
||||||
|
\score {
|
||||||
|
\new Staff \with {
|
||||||
|
instrumentName = "Clarinet"
|
||||||
|
} {
|
||||||
|
<< \melody \decoration >>
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
\header {
|
\header {
|
||||||
title = "Try to Remember"
|
title = "Try to Remember"
|
||||||
composer = "Music by Harvey Schmidt"
|
composer = "music by Harvey Schmidt"
|
||||||
poet = "Words by Tom Jones"
|
poet = "lyrics by Tom Jones"
|
||||||
}
|
}
|
||||||
|
|
||||||
melody = \relative c'' {
|
melody = \relative c'' {
|
||||||
@@ -21,7 +21,7 @@ melody = \relative c'' {
|
|||||||
b'4. b8 b4 | b a g | c,4. c8 c4 | c d e |
|
b'4. b8 b4 | b a g | c,4. c8 c4 | c d e |
|
||||||
}
|
}
|
||||||
\alternative {{
|
\alternative {{
|
||||||
b8 g8( g2) | r4 b8 g b g | b g b g b g | \break
|
b'8 g8( g2) | r4 b8 g b g | b g b g b g | \break
|
||||||
b g b g b g |
|
b g b g b g |
|
||||||
} {
|
} {
|
||||||
b8 g8( g2) | r4 b8 g b g |
|
b8 g8( g2) | r4 b8 g b g |
|
||||||
|
|||||||
@@ -0,0 +1,123 @@
|
|||||||
|
% Copied from "Easy Piano: Miss Siagon"
|
||||||
|
% pgs. 25-27
|
||||||
|
|
||||||
|
\include "globals.ly"
|
||||||
|
|
||||||
|
\header {
|
||||||
|
title = "Why God Why?"
|
||||||
|
composer = "music by Claude-Michel Schönberg"
|
||||||
|
poet = "lyrics by Alain Boublil"
|
||||||
|
}
|
||||||
|
|
||||||
|
melody = \relative c'' {
|
||||||
|
\tempo "Sustained, moderately slow"
|
||||||
|
\key a \minor
|
||||||
|
\numericTimeSignature \time 4/4
|
||||||
|
|
||||||
|
% pg 24
|
||||||
|
\repeat volta 2 {
|
||||||
|
r8 c c c c4 c8 c |
|
||||||
|
d4 e e2 | r8 g, g g g4 g8 g |
|
||||||
|
b4 c c2 | r8 c c c c4 c8 c |
|
||||||
|
|
||||||
|
% pg 25
|
||||||
|
d4 e e2 | r8 g, g g g4 g8 g |
|
||||||
|
b4 c c b8 c | c4( a2.) |
|
||||||
|
r8 g a g a g a g | a1 |
|
||||||
|
r8 c8 d c d c d c | d1 |
|
||||||
|
|
||||||
|
% pg 26
|
||||||
|
d2 c | d4 e c2 | r4 d8 e c4 e,4 |
|
||||||
|
d'4 e c4. c8 | c8 a a c b c d c |
|
||||||
|
}
|
||||||
|
\alternative {{ c8 a a c b c d4 | r1 } { c8 a a c b c f4( }}
|
||||||
|
f2) r2 | \key c \minor f2 ef | f4 g ef2 |
|
||||||
|
|
||||||
|
% pg 27
|
||||||
|
f4 g ef g, | f'4 g ef4. ef8 | ef8 c c ef d ef f ef |
|
||||||
|
\time 3/4 ef8 c c ef d ef | \time 4/4 af2. g4 | g2 r2 |
|
||||||
|
|
||||||
|
\bar "|."
|
||||||
|
}
|
||||||
|
|
||||||
|
decorations = \relative c'' {
|
||||||
|
% pg 24
|
||||||
|
\repeat volta 2 {
|
||||||
|
s1 \p |
|
||||||
|
s1 | s1 |
|
||||||
|
s1 | s1 |
|
||||||
|
|
||||||
|
% pg 25
|
||||||
|
s1 | s1 |
|
||||||
|
s1 | s1 |
|
||||||
|
s1 | s1 |
|
||||||
|
s1 | s2 \fermata s2 \< | %>
|
||||||
|
|
||||||
|
% pg 26
|
||||||
|
s2 \mf s2 | s1 | s1 |
|
||||||
|
s1 | s1 |
|
||||||
|
}
|
||||||
|
\alternative {{ s1 | s1 } { s1 }}
|
||||||
|
s1 | s2 \f s2 | s1 |
|
||||||
|
|
||||||
|
% pg 27
|
||||||
|
s1 | s1 | s1 |
|
||||||
|
\time 3/4 s2. | \time 4/4 s2 s4 s4 | s1 |
|
||||||
|
}
|
||||||
|
|
||||||
|
firstVerse = \lyricmode {
|
||||||
|
Why does Sai -- gon nev -- er
|
||||||
|
sleep at night? Why does this girl smell of
|
||||||
|
o -- rang -- trees? How can I feel good when
|
||||||
|
noth -- ing's right? Why is she cool when there
|
||||||
|
is no breeze? Vi -- et -- nam.
|
||||||
|
You don't give an -- sers, do you friend?
|
||||||
|
Just ques -- tions that don't ev -- er end.
|
||||||
|
Why, God? Why to -- day? I'm all through here
|
||||||
|
on my way. There's no -- thing left here that I'll miss, why
|
||||||
|
}
|
||||||
|
|
||||||
|
secondVerse = \lyricmode {
|
||||||
|
Who is this girl in a
|
||||||
|
rus -- ty bed? Why am I back in a
|
||||||
|
fil -- thy room? Why is her voice ring -- ing
|
||||||
|
in my head? Why am I high on her
|
||||||
|
cheap per -- fume? Vi -- et -- nam.
|
||||||
|
Hey, look I mean you no of -- fense.
|
||||||
|
Buy why does no -- thing here make sense?
|
||||||
|
Why, God? Show your hand. Why can't one guy
|
||||||
|
un -- der -- stand? I've been with girls who knew much more. I
|
||||||
|
}
|
||||||
|
|
||||||
|
codaLyrics = \lyricmode {
|
||||||
|
send me now a night like this? nev -- er felt con -- fused be -- fore.
|
||||||
|
Why me? What's your plan?
|
||||||
|
I can't help her, no one can. I liked my mem -- 'ries as they were, but
|
||||||
|
now I'll leave re -- mem -- b'ring her. Just her.
|
||||||
|
}
|
||||||
|
|
||||||
|
\book {
|
||||||
|
\score {
|
||||||
|
<<
|
||||||
|
\new Staff \with {
|
||||||
|
instrumentName = "Clarinet"
|
||||||
|
} {
|
||||||
|
\new Voice = "melody" {
|
||||||
|
<< \melody \decorations >>
|
||||||
|
}
|
||||||
|
}
|
||||||
|
\new Lyrics \lyricsto "melody" {
|
||||||
|
\set fontSize = #-2
|
||||||
|
<<
|
||||||
|
\firstVerse
|
||||||
|
\new Lyrics {
|
||||||
|
\set associatedVoice = "melody"
|
||||||
|
\set fontSize = #-2
|
||||||
|
\secondVerse
|
||||||
|
}
|
||||||
|
>>
|
||||||
|
\codaLyrics
|
||||||
|
}
|
||||||
|
>>
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
\include "empty-chairs-at-empty-tables.ly"
|
||||||
|
|
||||||
|
\book {
|
||||||
|
\score {
|
||||||
|
\new Staff \with {
|
||||||
|
instrumentName = "Tenor Sax"
|
||||||
|
} {
|
||||||
|
\transpose a b
|
||||||
|
\melody
|
||||||
|
|
||||||
|
\addlyrics {
|
||||||
|
\set fontSize = #-2
|
||||||
|
\words
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
\include "feed-the-birds.ly"
|
||||||
|
|
||||||
|
\book {
|
||||||
|
\score {
|
||||||
|
\new Staff \with {
|
||||||
|
instrumentName = "Tenor Sax"
|
||||||
|
} {
|
||||||
|
\transpose g c'
|
||||||
|
\melody
|
||||||
|
\addlyrics {
|
||||||
|
\set fontSize = #-2
|
||||||
|
\words
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
\include "greensleeves-base.ly"
|
||||||
|
|
||||||
|
\book {
|
||||||
|
\score {
|
||||||
|
\new Staff \with {
|
||||||
|
instrumentName = "Tenor Sax"
|
||||||
|
} {
|
||||||
|
\transpose c' c''
|
||||||
|
\melody
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
\include "nature-boy.ly"
|
||||||
|
|
||||||
|
\book {
|
||||||
|
\score {
|
||||||
|
\new Staff \with {
|
||||||
|
instrumentName = "Tenor Sax"
|
||||||
|
} {
|
||||||
|
\transpose c g
|
||||||
|
<< \melody >>
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 4.3 MiB |
@@ -0,0 +1,12 @@
|
|||||||
|
\include "song-of-the-volga-boatmen-base.ly"
|
||||||
|
|
||||||
|
\book {
|
||||||
|
\score {
|
||||||
|
\new Staff \with {
|
||||||
|
instrumentName = "Tenor Sax"
|
||||||
|
} {
|
||||||
|
\transpose g' bf'
|
||||||
|
\melody
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
\include "as-time-goes-by.ly"
|
||||||
|
|
||||||
|
\book {
|
||||||
|
\score {
|
||||||
|
\new Staff \with {
|
||||||
|
instrumentName = "Violin"
|
||||||
|
} {
|
||||||
|
\melody
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
\version "2.24.4"
|
||||||
|
\include "e-lucevan-le-stelle.ly"
|
||||||
|
|
||||||
|
\book {
|
||||||
|
\score {
|
||||||
|
\new Staff \with {
|
||||||
|
instrumentName = "Violin"
|
||||||
|
} {
|
||||||
|
\transpose c c \melody
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user