unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
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

       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

  List information: https://www.gnu.org/software/emacs/

* 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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).