help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: emacs - LaTeX: problems after [0] pages.


From: John Mastro
Subject: Re: emacs - LaTeX: problems after [0] pages.
Date: Wed, 21 Dec 2016 11:00:18 -0800

<vernin@sfr.fr> wrote:
> I use a MakBookPro, with MacOS Sierra 10.12.2
> I use emacs for tex file that I compile by C-c C-c
>
> I changed my system and now, when I do: C-c C-c truc.tex, the system answers:
> LaTeX: problems after [0] pages.
> There is no truc.log created
>
> If I do: pdflatex truc.tex in the Terminal, all is correct.
>
> I tried:
> MacBook-Pro-de-Jacques:Naples jacquesvernin$ which pdflatex
> /Library/TeX/texbin/pdflatex
>
> and, in my .emacs, I put:
> (setenv "PATH"
>    (concat
>     "/Library/TeX/texbin"  ;%%%% ajoutÈ le 19/12
>     "/usr/texbin"
>     ":"
>     (getenv "PATH")
>     )
> )
>
> No change!

I'm not familiar with any of TeX, LaTeX, or pdflatex, so I can't
really say if this will help, but shouldn't the PATH setting be
something like the below?

(setenv "PATH"
        (concat "/Library/TeX/texbin"
                ":" ;; <--- Another colon here to separate the elements
                "/usr/texbin"
                ":"
                (getenv "PATH")))

Otherwise you're adding "/Library/TeX/texbin/usr/texbin", which I don't
think is what you intend.

        John



reply via email to

[Prev in Thread] Current Thread [Next in Thread]