শিখতেই তো চাই, কিন্তু কে শেখাবে সম্পাদনা

 
হাল্কা চোতা
  • হিন্দুস্তানী বনাম পশ্চিমী সঙ্গীতের স্বর - https://w.wiki/3e2
  • treble clef >> Every Good Boy Deserves Favours" (for the pitches on the lines) and "FACE in the space" (for the pitches on the spaces between lines). (পাশের চোতা দেখ)
  • bass clef >> Good Boys Deserve Favours Always" (for the pitches on the lines) and "Any Cow Eats Grass" (for the pitches on the spaces).


ধাপে ধাপে এগোই যতটা পারি সম্পাদনা

  • সা রে গা মা পা ধা নি সা (c d e f g a b) (মন্দ্র সা স্কেলে)
<score %sound="1"%  midi="1">
% set the starting point to lower C
\relative c
 {
  c d e f  g a b c
}</score>
 

  • সা রে গা মা পা ধা নি সা (c d e f g a b) (মধ্য সা স্কেলে)
<score %sound="1"%  midi="1">
% set the starting point to middle C
\relative c'
 {
  c d e f  g a b c
}</score>
 

  • সা রে গা মা পা ধা নি সা (c d e f g a b) (তার সা স্কেলে)
<score %sound="1"%  midi="1">
% set the starting point to upper C
\relative c''
 {
  c d e f  g a b c
}</score>
 
  • যে স্কেল, তার নিকটবর্তী স্বর দিয়ে শুরু হয়, লক্ষ্য করুন (g a b c) এখানে c' ' স্কেল দিয়ে শুরু হয়েছে, কিন্তু g স্বরটি c' ' এর নিকটবর্তী স্বর যা c' স্কেলে অবস্থিত, c' ' স্কেলে নয়
<score %sound="1"%  midi="1">
\relative c''
 {
   g a b c
}</score>
 

  • পরবর্তী অষ্টকে যেতে গেলে ' ও তার ওপরে যেতে গেলে ' ' ব্যবহার করতে হবে এবং নীচের অষ্টকে যেতে গেলে যথাক্রমে , বা ,, ব্যবহার করতে হবে। (এখানে a a, c' f, g g' ' a,, f')
<score %sound="1"%  midi="1">
\relative c''
 {
  a a, c' f, g g'' a,, f'
}</score>
 

  • Whole note, Half note, Quarter note, Eighth note, Sixteenth note...
<score %sound="1"%  midi="1">
\relative c''
 {
  a1
  a2 a4 a8 a16 a32 a64 a128
}</score>
 

<score %sound="1"%  midi="1">
\relative c''
 {
  b8[d c b] a16[g f b] c2 
  b32[d e g b]
}</score>
 
  • chord
<score %sound="1"%  midi="1">
\relative c''
 {
<a d> <a b e> <a e b>
}</score>
 

  • phrase
<score %sound="1"%  midi="1">
\relative c''
 {
a\(a d2 e4 f4\)
}</score>
 

  • slur
<score %sound="1"%  midi="1">
\relative c''
 {
g( b d)
}</score>
 
  • Sharp flat
<score %sound="1"%  midi="1">
\relative c''
{
bis bisis bes beses
}</score>
 

  • Treble
<score %sound="1"%  midi="1">
\relative c' {
  \clef "treble"
  c1
  \clef "french"
  c1
  \clef "bass"
  c1
  \clef "alto"
  c1
  \clef "tenor"
  c1
  \clef "bass"
  c1
}
</score>
 

  • Polyphony
<score %sound="1"%  midi="1">
\relative c'' {
<< { g g g g } \\ { f' f f f } >>
}
</score>
 
  • Multiple staves
<score %sound="1"%  midi="1">
\relative c'' {
  <<
    \new Staff { \clef "treble"   
  c2 e8 c' g'2. f4 e d c4 c, r }
    \new Staff { \clef "bass" 
  c2 e8 c' g'2. f4 e d c4 c, r }
  >>
}
</score>
 

JANA GANA MANA সম্পাদনা