Sep 19, 2025

lilypond notes

 lilypond notes


  • bis是#b, bes是降b
  • articulation: >.<, etc
  • dynamics: ff,pp, etc
  • add text under and above: _markup {\tiny accel.}, ^markup {\tiny accel.}

  • The difference between slur () and tie ~. Slur applies to notes of different pitches. Tie applies to notes of the same pitches. Lyrics advance strange?Pond 中
  • g=' — set the current pitch to absolute g'

  • diminished chord
\new Staff { 
 \chordmode {
    b,:dim4
  }
}

編譯出來會顯示b d e, 要顯示b d f要用b,4:dim 

 
  • 三連音(triplet)使用 \tuplet 三連音基本語法是:
\tuplet 3/2 {
  c8 d e
}

意思是:

    • 3/2:3 個音符的總時值,放進原本 2 個音符的時間內。
    • 上面的例子就是 三個八分音符 = 兩個八分音符的時間(最常見的三連音)。

例如:

\relative c' {
  c4
  \tuplet 3/2 {
    c8 d e
  }
  f4
}

會得到:

♩ ♪♪♪ ♩
    3tstesttesttest