Sep 19, 2025

lilypond notes

 lilypond notes

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 中,三連音(triplet)使用 \tuplet 

  • 三連音基本語法是:

    \tuplet 3/2 {
    c8 d e
    }

    意思是:

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

    例如:

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

    會得到:

    ♩ ♪♪♪ ♩
    3