2022-11-02 09:33:26 +01:00

66 lines
969 B
Plaintext

\version "2.22.2"
\header {
title = "Jazz Suite for Bassoon"
subtitle = "II"
composer = "Ken Cooper"
}
\paper {
#(set-paper-size "a4")
}
global = {
\key a \minor
\numericTimeSignature
\time 3/4
\tempo "Moderate Jazz Waltz" 4=132
}
bassoon = \relative c {
\global
r1 |
r2 r4 |
r2 r4 |
r2 r4 |
}
right = \relative c' {
\global
e'8( <b g'>) r e( <b g'>4) |
}
left = \relative c' {
\global
c,8( e') r c,( <g' e'>4) |
}
bassoonPart = \new Staff \with {
instrumentName = "Bassoon"
midiInstrument = "bassoon"
} { \clef bass \bassoon }
pianoPart = \new PianoStaff \with {
instrumentName = "Piano"
} <<
\new Staff = "right" \with {
midiInstrument = "acoustic grand"
} \right
\new Dynamics {
s4 \f \markup{(lightly)} s4 s4 |
s1 |
}
\new Staff = "left" \with {
midiInstrument = "acoustic grand"
} { \clef bass \left }
>>
\score {
<<
\bassoonPart
\pianoPart
>>
\layout { }
\midi { }
}