\version "2.14.2" \paper { #(set-paper-size "letter") top-margin = 0.5\in indent = 0\in } \header { title = "Careless Whisper" %tagline = #f %disable default Lilypond footer } \layout { \context { \Score \omit BarNumber % or: %\remove "Bar_number_engraver" } } % not sure whether the pickup note is cis or d mynotes = \relative c'' {\key b \minor \partial 8 d8 | \repeat volta 2 { cis' b16 fis16~fis d8 cis'16~ cis8 b16 fis16~ fis d8.| a'8 g16 d~d b8 a'16~a8 g16 d~d4 | g8 fis16 d~d b8 g16~g2| fis8 g a b cis d e fis | }} \score { \relative c'' { \tempo 4 = 77 \transposition ees % alto saxophone, 2 sharps \mynotes } \layout { } \midi { } } % B-flat instrument in unison with alto sax, 1 sharp \score { {\transpose g c \mynotes }} % concert pitch, if a B-flat instrument plays the alto sax part, none \score { {\transpose d c \mynotes }} % concert pitch, one flat \score { {\transpose c' ees \mynotes }} % 2 flats because why not \score { {\transpose d' bes \mynotes }} % 3 sharps, basically tenor clef \score { {\transpose fis cis \mynotes }} % naturals, bottom note e \score {{ \clef alto \transpose fis' e \mynotes }} % 2 flats because why not, bottom note d \score {{ \clef alto \transpose fis' d \mynotes }} % 3 sharps, (up one step from lowest possible because string players don't like flats), bottom note cis \score { {\clef alto \transpose fis' cis \mynotes }} % four flats, bottoming out viola at c \score { {\clef alto \transpose fis' c \mynotes }}