all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Nick Dokos <ndokos@gmail.com>
To: emacs-orgmode@gnu.org
Subject: Re: problems with latex custom classes in new exporter
Date: Sat, 11 May 2013 22:37:23 -0400	[thread overview]
Message-ID: <87vc6oc49o.fsf@pierrot.dokosmarshall.org> (raw)
In-Reply-To: CAE+_6TwpTpU0D8yboaWDybo7sAP=7cqkgjr9FBCiqwVxRWOwJg@mail.gmail.com

Peter Salazar <cycleofsong@gmail.com> writes:

> I use a LaTeX custom class which I hired someone to create for me,
> which I load as a preference file
> latex.el: http://pastebin.com/SW0Xqe2h  (the custom class is called
> ilija).
>
> It worked perfectly up to org 7.9.4.
>
> But now my PDF documents are coming out all
> garbled: http://i.imgur.com/hys33MS.png
>
> Here's the Org PDF LaTeX Output:  
> http://pastebin.com/rQmkzBYa
>
> I don't really know how to interpret all those errors, except that I
> do notice this: 
>
> Package hyperref Error: Wrong driver option `xetex',
> (hyperref)                because XeTeX is not detected.
> 
> Again, it was working before I upgraded to 8.0.2, and it still works
> perfectly when I load org-7.9.4 instead of org-8.0.2. 
>
> Reference: OSX 10.8.3, Aquamacs 2.4 / Emacs 23.3.50.1 / org-8.0.2.
>

The old org-latex-to-pdf-process variable (which you are initializing
in your latex.el file) has been renamed to org-latex-pdf-process. I
presume that you are not touching the latter, so it's left at default,
so the exporter ends up invoking pdflatex instead of xelatex.

You probably want to duplicate the setting in latex.el so that it will
continue working in both 8.0 and 7.9.4, rather than eliminating the old
one:

--8<---------------cut here---------------start------------->8---
(setq org-latex-to-pdf-process
  '("xelatex -interaction nonstopmode %f"
     "xelatex -interaction nonstopmode %f")) ;; for multiple passes

(setq org-latex-pdf-process
  '("xelatex -interaction nonstopmode %f"
     "xelatex -interaction nonstopmode %f")) ;; for multiple passes
--8<---------------cut here---------------end--------------->8---

or just:

--8<---------------cut here---------------start------------->8---
(setq org-latex-pdf-process org-latex-to-pdf-process)
--8<---------------cut here---------------end--------------->8---

(Untested).
-- 
Nick

  reply	other threads:[~2013-05-12  2:37 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-12  1:58 problems with latex custom classes in new exporter Peter Salazar
2013-05-12  2:37 ` Nick Dokos [this message]
2013-05-12  6:55   ` Peter Salazar

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=87vc6oc49o.fsf@pierrot.dokosmarshall.org \
    --to=ndokos@gmail.com \
    --cc=emacs-orgmode@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.