[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Accented characters in italian language
From: |
Heime |
Subject: |
Re: Accented characters in italian language |
Date: |
Mon, 18 Mar 2024 22:08:35 +0000 |
On Tuesday, March 19th, 2024 at 3:31 AM, Henrique Martins <emacs@martins.cc>
wrote:
> > I am writing a latex document in italian. How can one introduce the italian
> > accented characters.
>
>
> (defun heime-italian()
> "Enable it_IT dictionary and italian-prefix."
> (setq ispell-local-dictionary "it_IT")
> (activate-input-method XXX-prefix))
> )
>
> where XXX-prefix could be italian-keyboard, italian-postfix,
> italian-alt-postfix, or any of the latin-1 prefixes that
> suits you.
>
> Then execute heime-italian in your latex buffer.
>
> Try M-x set-input-method then type TAB to list all
> input-methods, or search for "italian" in your emacs
> distribution, in these files:
> lisp/language/european.el.gz
> lisp/leim/quail/latin-alt.el.gz
> lisp/leim/quail/latin-post.el.gz
I would like to have a command that does the equivalent of
'M-x set-input-method' that would show me the list of
input methods.
> I do that for portuguese/french/spanish, where to type,
> e.g. รก, type ', then a. Never tried italian.
>
> -- Henrique