From: Harald Hanche-Olsen <hanche@math.ntnu.no>
To: help-gnu-emacs@gnu.org
Subject: Re: latex files encoding
Date: Fri, 10 Aug 2007 12:33:15 +0200 [thread overview]
Message-ID: <pcozm0zznkk.fsf@shuttle.math.ntnu.no> (raw)
In-Reply-To: mailman.4601.1186739710.32220.help-gnu-emacs@gnu.org
+ Alain Muls <alain.muls@telenet.be>:
| I have numerous latex files I created using kile. The encoding is (I
| think) sat to UTF-8 or UTF-16. Since I like auctex, reftex, etc I
| decided to return to emacs, an editor I used until 2 years ago.
|
| Now I have a problem with the encoding of these files. As an example,
| the ë (e diacritic ?) is shown as ï. How can I get emacs to respect
| the encoding of the files.
The hard way: Type C-x C-m c and specify utf-8 for the coding
system, and immediately follow this by C-x C-f to find the file.
The easy way: Put a comment on the first line of your latex files:
% -*- coding: utf-8; -*-
If you want the utf-8 encoding on every tex file you can do
something like
(push '("[.]tex$" . utf-8) file-coding-system-alist)
(er, push is part of the cl package, so you need (require 'cl) first,
or rewrite to the equivalent non-cl elisp - which I admit I am too
lazy to figure out right now).
You can still override that with C-x C-m c if you encounter a
non-utf-8 latex file.
And finally, you can convert your utf-8 encoded tex files to latin-1
(if possible) by first reading them after using C-x C-m c utf-8 RET
and then changing the coding system using C-c C-m f and specifying
latin-1, whereupon you save the file. (You'd better edit the
\usepackage[...]{inputenc} in the source file accordingly.)
--
* Harald Hanche-Olsen <URL:http://www.math.ntnu.no/~hanche/>
- It is undesirable to believe a proposition
when there is no ground whatsoever for supposing it is true.
-- Bertrand Russell
next parent reply other threads:[~2007-08-10 10:33 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <mailman.4601.1186739710.32220.help-gnu-emacs@gnu.org>
2007-08-10 10:33 ` Harald Hanche-Olsen [this message]
2007-08-10 16:03 ` latex files encoding Emilio Lopes
2007-08-10 18:05 ` Reiner Steib
2007-08-10 17:51 ` Ralf Angeli
2007-08-10 9:45 Alain Muls
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=pcozm0zznkk.fsf@shuttle.math.ntnu.no \
--to=hanche@math.ntnu.no \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.