How to enter Greek characters in Emacs

后端 未结 10 1328
说谎
说谎 2021-01-30 11:20

This page indicates that Greek letters can be inserted into Emacs by using M-i. However, Emacs 23.2.1 in a Debian Squeeze variant inserts the \"tab\" character when

10条回答
  •  温柔的废话
    2021-01-30 12:01

    You can use ucs-insert bound to C-x8RET to insert any Unicode characters by name or by value.

    For example to insert a lambda you can do

    • C-x8RET GREEK SMALL LETTER LAMBDA RET → λ
    • C-x8RET 03bb RET → λ

    A tab-completion is also available.

    C-x8RET* lambdaTAB will list every unicode characters ended by a lambda.

提交回复
热议问题