all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Ralf Angeli <dev.null@caeruleus.net>
To: help-gnu-emacs@gnu.org
Subject: Re: Having .emacs distinguish betweeen LaTeX and XeLaTeX
Date: Sun, 27 May 2012 21:08:42 +0200	[thread overview]
Message-ID: <4fc27bbb$0$6561$9b4e6d93@newsspool4.arcor-online.net> (raw)
In-Reply-To: 87mx4tkhwj.fsf@engels.HistoricalMaterialism.info

* Haines Brown (2012-05-27) writes:

> I would like to specify the TeX engine with the emacs command line, such
> as with C-c C-c latex and C-c C-c xelatex, rather than having it only
> call whichever TeX-engine is specified in AUCTeX configuration or in
> .emacs init file. At present I can only switch between processing LaTeX
> and XeLaTeX files by inserting or commenting a line in .emacs (setq
> TeX-engine 'xetex) and reload emacs.
> 
> Simplest would be to have AUCTeX not specify any TeX-engine and instead
> use the engine specified at the command prompt. There does not seem to
> be any way to do this, and so an alternative might be for .emacs to
> specify the TeX engine by distinguishing between LaTeX and XeLaTeX
> files.

You can set the engine as a file variable in the files which require
XeTeX.

For example like this:

%%% Local Variables: 
%%% mode: latex
%%% TeX-engine: xetex
%%% TeX-PDF-mode: t
%%% TeX-master: t
%%% End: 

> Someone using the Jed editor does this. He sets the default TeX-engine to
> xetex if the document uses packages peculiar to XeTeX:
>
>    if (re_fsearch("\\usepackage.*unicode-math") or
>        re_fsearch("\\usepackage.*fontspec") or
>        re_fsearch("\\usepackage.*polyglossia")
>       )
>       define_blocal_var("latex_output", "xetex");
>
> Is it possible to something comparable to this if construction in .emacs
> init? I know nothing of lisp, but guess it would be something like:
>
>    ( if 
>         (search-forward "\usepackage*fontspec") or
>         (search-forward "\usepackage*polyglossia")
>      (setq TeX-engine 'xetex))

AUCTeX uses style files for things like this.  For example for
fontspec.sty you'd write a file called fontspec.el which is placed in
AUCTeX's style directory and which switches the TeX engine to XeTeX.
See (info "(auctex)Style Files") for details.

-- 
Ralf


      parent reply	other threads:[~2012-05-27 19:08 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-05-27 11:00 Having .emacs distinguish betweeen LaTeX and XeLaTeX Haines Brown
2012-05-27 11:16 ` Teemu Likonen
2012-05-27 13:31   ` Haines Brown
2012-05-27 17:06   ` Haines Brown
2012-05-27 12:51 ` XeCycle
2012-05-27 19:08 ` Ralf Angeli [this message]

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='4fc27bbb$0$6561$9b4e6d93@newsspool4.arcor-online.net' \
    --to=dev.null@caeruleus.net \
    --cc=angeli@caeruleus.net \
    --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.