Add 'E Lucevan el stelle' for violin

This commit is contained in:
Andrew Miner
2026-05-04 18:58:42 -06:00
parent 096a8f56c7
commit 4ddb75c00d
4 changed files with 44 additions and 16 deletions
+1 -14
View File
@@ -3,7 +3,7 @@
# Constants ############################################################################################################
read -d  USAGE <<-END
USAGE: $0 <clean|compile|help|watch> (--view)
USAGE: $0 <clean|compile|help> (--view)
END
@@ -15,10 +15,6 @@ function cancel {
}
function check-dependencies {
if ! which -s "fswatch"; then
brew install fswatch
fi
if ! which -s "lilypond"; then
brew install lilypond
fi
@@ -61,14 +57,6 @@ function command-compile {
done
}
function command-watch {
CURRENT_DIR=$(dirname $0)
fswatch -r src/scores | egrep '\.ly$' --line-buffered | grep -v 'includes' --line-buffered | while read FILE; do
FILE=$(echo $FILE | sed 's@.*/src/scores/\(.*\)$@./src/scores/\1@')
compile-ly $FILE
done
}
# Initialization #######################################################################################################
check-dependencies
@@ -97,6 +85,5 @@ case "$COMMAND" in
clean) command-clean;;
compile) command-compile;;
help|-h|-?|--help) usage;;
watch) command-watch;;
*) cancel "Unrecognized command: $COMMAND"
esac
+1 -1
View File
@@ -55,7 +55,7 @@ naturalizeMusic = #(define-music-function (parser location m)
)
)
scoop = \once \override NoteHead #'stencil = #scoop-stencil
scoop = \once \override NoteHead.stencil = #scoop-stencil
toCoda = \markup {
\fontsize #-2 \lower #1 "TO" \musicglyph #"scripts.coda"
+29
View File
@@ -0,0 +1,29 @@
\include "globals.ly"
\header {
title = "E Lucevan le Stelle"
subtitle = "from Tosca"
composer = "Puccini"
}
melody = \relative c'' {
\tempo "Andante lento appassionato molto"
\numericTimeSignature
\key cs \minor
%{ 1 %} | \time 6/4 s4\p s8 gs8 ds' e fs(^\markup "rubando" gs fs e) ds8.^\markup "rit." gs,16
%{ 2 %} \bar "||" \time 3/4 cs4. cs8( ds8 e8
%{ 3 %} | a,4~ a8.) a16( b cs ds e)
%{ 4 %} | fs8[ gs a b] \grace { a16 b16( } a8.) fs16(
%{ 5 %} | gs4) gs2(
%{ 6 %} | gs16) gs, ds' e fs( gs fs e) ds8. gs,16(
%{ 7 %} | cs4.)\< cs8( ds e
%{ 8 %} | a4) a2(\!\mf
%{ 9 %} | a8) a a a fs8. ds16(
%{ 10 %} | gs2.)\>
%{ 11 %} | s8\! gs gs gs ds8. bs16(\<
%{ 12 %} | e4)\! e2\>
%{ 13 %} \bar "||" \time 4/4 s8\!\mf b8(^\markup "so st'do vagamente" fs' gs) a( b) a16( gs fs b,)
%{ 14 %} | \time 3/4 e8^\markup "affrett." e4. ds8.(^\markup "rit." gs,16
%{ 15 %} | cs2.)
}
@@ -0,0 +1,12 @@
\version "2.24.4"
\include "e-lucevan-le-stelle.ly"
\book {
\score {
\new Staff \with {
instrumentName = "Violin"
} {
\transpose c bf, \melody
}
}
}