From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Heime Newsgroups: gmane.emacs.help Subject: Re: Accented characters in italian language Date: Mon, 18 Mar 2024 22:08:35 +0000 Message-ID: References: <551278.1710775898@rock.martins.cc> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="2462"; mail-complaints-to="usenet@ciao.gmane.io" Cc: help-gnu-emacs@gnu.org To: Henrique Martins Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Mon Mar 18 23:09:36 2024 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1rmLAl-0000S4-RW for geh-help-gnu-emacs@m.gmane-mx.org; Mon, 18 Mar 2024 23:09:35 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1rmLAG-0004Oy-Bv; Mon, 18 Mar 2024 18:09:04 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rmLA9-0004Nj-W3 for help-gnu-emacs@gnu.org; Mon, 18 Mar 2024 18:09:00 -0400 Original-Received: from mail-40138.protonmail.ch ([185.70.40.138]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rmL9w-0001bA-L6 for help-gnu-emacs@gnu.org; Mon, 18 Mar 2024 18:08:56 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1710799720; x=1711058920; bh=t6GDUK0ekhDlPAmBxvmp3DAwXAiWZudvvJZWbG0yTPk=; h=Date:To:From:Cc:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector; b=XB79wYGFkJqA/fyRNdWPdSqPonSe89oB4VFeFC08clcbDShBnZ6+rRx5q1f69M3dC 3XsaujZIH4HIFHpx88QWoeMBSxK/NyP3Iwfn0NaTyRKkUaSth0+/1xaBV692zsNUX2 WHFza3nKxnW1zpzIuez1baS8FerWvvm+QAFcE9OpzuOIvnBceobMM2meEDk3Ms8xFf yJcKctjjAi0+wo5BtOD2qnUZhp4DuCPpMBuDo42qv4DfPps+l40R6noH2oU0GMHpz1 vMljnzPLiw5C21i8S6fr6Bpk0HSkFYk1DyLuEDnLsVFh091Di+7prK2w0xYm6R9qvA +nkDc5njdy1gQ== In-Reply-To: <551278.1710775898@rock.martins.cc> Feedback-ID: 57735886:user:proton Received-SPF: pass client-ip=185.70.40.138; envelope-from=heimeborgia@protonmail.com; helo=mail-40138.protonmail.ch X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.help:146121 Archived-At: On Tuesday, March 19th, 2024 at 3:31 AM, Henrique Martins wrote: > > I am writing a latex document in italian. How can one introduce the ita= lian > > accented characters. >=20 >=20 > (defun heime-italian() > "Enable it_IT dictionary and italian-prefix." > (setq ispell-local-dictionary "it_IT") > (activate-input-method XXX-prefix)) > ) >=20 > where XXX-prefix could be italian-keyboard, italian-postfix, > italian-alt-postfix, or any of the latin-1 prefixes that > suits you. >=20 > Then execute heime-italian in your latex buffer. >=20 > 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=20 'M-x set-input-method' that would show me the list of input methods. =20 > I do that for portuguese/french/spanish, where to type, > e.g. =C3=A1, type ', then a. Never tried italian. >=20 > -- Henrique