JÃrg Hagmann <[EMAIL PROTECTED]> writes:

JÃrg Hagmann <[EMAIL PROTECTED]> writes:

> Dear list members,
>
> I have been using emacs for a few months but am still trying to find
> out how to type greek letters (e.g.: a-ketoglutarate, the a should be
> an alpha).

(set-input-method 'greek)

You can bind it to a function key, for example I have:

(global-set-key [C-f10] (lambda()(interactive)(set-input-method 
'cyrillic-yawerty)))
(global-set-key [C-f11] (lambda()(interactive)(set-input-method 'greek)))
(global-set-key [C-f12] (lambda()(interactive)(set-input-method 'hebrew)))

in my ~/.emacs.  Then I'd type:

   C-f11 a C-\ -ketoglutarate 

to get:

   Î-ketoglutarate

C-f11 ÏÏÎÏÏÃÏ C-\





-- 
__Pascal Bourguignon__                     http://www.informatimago.com/
Cats meow out of angst
"Thumbs! If only we had thumbs!
We could break so much!"
_______________________________________________
Help-gnu-emacs mailing list
Help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

Reply via email to