Back

Who am i

instrumental

PNG - MP3 - MIDI

horn PNG
sax-only PNG
sax PNG
source code
\version "2.24.1"

% https://musescore.com/user/34002477/scores/6897293

% global data required for every staff
global = {
  \numericTimeSignature
  \key b\major
  \time 4/4
  \tempo 4=134
  %\set Timing.beamExceptions = #'()
  %\set Timing.baseMoment = #(ly:make-moment 1/4)
  %\set Timing.beatStructure = #'(1 1 1 1)
}

% The main melody (and right hand for piano players)
melody = \transpose b g \relative c' {
  \global
  \time 5/4 b'4 cis8 dis cis4 fis, fis' |
  \time 4/4 e4~ 8 dis8~ 4 cis4~ | \time 2/4 8 b8~ 4 |
  \time 5/4 b4 cis8 dis cis4 fis, fis' | \break
  \time 4/4 e4~ 8 dis8~ 4 cis4~ | 8 dis4~ 8 cis4 b |
  \time 5/4 b4 cis8 dis cis4 fis, fis' |
  \time 4/4 e4~ 8 dis~ 4 cis~ | 8 b~ 2 dis4 | e~ 8 dis~ 4 cis~ | 1
}

% Optionally add a right hand (defaults to the melody)
%rightHand = \relative c' {
%  \global
%  <<
%    \new Voice { \voiceOne \melody }
%    \new Voice { \voiceTwo
%      <c e>2 <b d> | <c f> <b d> | <c e> <b d> | <c f> <e gis>8 e e d |
%      <e a>2 <e g> | <c f> <c e> | <a c> a | <a c f>1
%    }
%  >>
%}

% Optionally add a left hand for piano players
% Remove the notes from the leftHand to remove the staff entirely
chordNames = \transpose b g' \chordmode {
  \time 5/4 gis2:m fis2.:/ais
  \time 4/4 e2. b4:/dis~ \time 2/4 b2:/dis
  \time 5/4 gis2:m fis2.:/ais
  \time 4/4 e2. b4*5:/dis
  \time 5/4 gis2:m fis2.:/ais
  \time 4/4 a1 e:/gis e:m/g fis
}

% Uncomment to for example change to which octave the different instruments are tranposed
% For example, use `\transpose es c` to lower by one octave.
%melodySax = \transpose es c' \melody
%melodyHorn = \transpose f c' \melody

% Optional lyrics to indicate when to start singing
songtext = \lyricmode {
Yours4*5
}

\include "../template.ly"

intro

PNG - MP3 - MIDI

sax PNG
sax-only PNG
horn PNG
source code
\version "2.24.1"

% https://musescore.com/user/34002477/scores/6897293

% global data required for every staff
global = {
  \numericTimeSignature
  \key b\major
  \time 4/4
  \tempo 4=134
  %\set Timing.beamExceptions = #'()
  %\set Timing.baseMoment = #(ly:make-moment 1/4)
  %\set Timing.beatStructure = #'(1 1 1 1)
}

% The main melody (and right hand for piano players)
melody = \transpose b g \relative c' {
  \global
  <b' fis>4. <b fis>8~ 8 <ais fis>4 <b fis>8~ | <b fis>4. <b fis>8~ 8 <ais fis>4 <b fis>8~ | <b fis>4. <b fis>8~ 8 <ais fis>4 <b fis>8~ 4 ais8 gis~ gis ais4.
  <b  fis>4. <b fis>8~ 8 <ais fis>4 <b fis>8~ | <b fis>4. <b fis>8~ 8 <ais fis>4 <b fis>8~ | <b fis>4. <b fis>8~ 8 <ais fis>4 <b fis>8~ 4. ais8~ 2~ 2 r2
}

% Optionally add a right hand (defaults to the melody)
%rightHand = \relative c' {
%  \global
%  <<
%    \new Voice { \voiceOne \melody }
%    \new Voice { \voiceTwo
%      <c e>2 <b d> | <c f> <b d> | <c e> <b d> | <c f> <e gis>8 e e d |
%      <e a>2 <e g> | <c f> <c e> | <a c> a | <a c f>1
%    }
%  >>
%}

% Optionally add a left hand for piano players
% Remove the notes from the leftHand to remove the staff entirely
leftHand = \transpose b g' \relative c' {
  \global
  \clef bass

  b,1 | e | gis | fis2. fis,4 |
  <<
    \new Voice { \voiceOne fis'1 e2 ~ 8 b e fis | gis1 | fis }
    \new Voice { \voiceTwo b,1 | e, | gis | fis }
  >>
  r1
}

chordNames = \transpose b g \chordmode {
  \repeat unfold 2 { b1 e gis:m fis } fis
}

% Uncomment to for example change to which octave the different instruments are tranposed
% For example, use `\transpose es c` to lower by one octave.
%melodySax = \transpose es c' \melody
%melodyHorn = \transpose f c' \melody

% Optional lyrics to indicate when to start singing
songtext = \lyricmode {}

\include "../template.ly"