From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Exporting text Date: Mon, 27 Jan 2014 12:00:52 -0500 Message-ID: <87k3dl1hrv.fsf@alphaville.bos.redhat.com> References: <20140126193122.GA14688@pfdstudio-air.home> <8738kajsqj.fsf@bzg.ath.cx> <20140127150529.GF47919@pdavismbp15.iscinternal.com> <20140127155930.GA97990@pdavismbp15.iscinternal.com> <20140127163103.GB97990@pdavismbp15.iscinternal.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57563) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W7pYl-0004EU-6h for emacs-orgmode@gnu.org; Mon, 27 Jan 2014 12:01:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W7pYa-0003Q6-Lj for emacs-orgmode@gnu.org; Mon, 27 Jan 2014 12:01:19 -0500 Received: from plane.gmane.org ([80.91.229.3]:43643) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W7pYa-0003Pz-Ee for emacs-orgmode@gnu.org; Mon, 27 Jan 2014 12:01:08 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1W7pYX-0000Q6-QW for emacs-orgmode@gnu.org; Mon, 27 Jan 2014 18:01:05 +0100 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 27 Jan 2014 18:01:05 +0100 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 27 Jan 2014 18:01:05 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Peter Davis writes: > On Mon, Jan 27, 2014 at 11:19:09AM -0500, Peter Davis wrote: >> On Mon, Jan 27, 2014 at 10:05:29AM -0500, Peter Davis wrote: >> > >> > > I suggest you install Org through git, as explained in the manual. >> > > >> > > Don't forget to ~$ make autoloads or just ~$ make >> > > >> > >> > I'll try re-installing via git. >> > >> >> Ok, I tried making org from git, but I'm still having problems with >> latex. When I start emacs, I get >> >> Symbol's value as variable is void: org-latex-classes >> >> NOTE that when I try locate library, I still see the elpa location > > Ok, so two other changes seem to have me working again: > > 1) move the elpa directory out of the way, and > 2) explicitly load ox-latex > > Now emacs starts up without errors, and I can export to latex without > errors. > > However, the latex output looks like complete rubbish ... just > headers, overlapping each other vertically. > Use a minimal .emacs, something like this (adjust path to suit your situation): --8<---------------cut here---------------start------------->8--- (add-to-list 'load-path "~/src/emacs/org/org-mode/lisp") (require 'org-loaddefs) --8<---------------cut here---------------end--------------->8--- Then start emacs with emacs -q -l /path/to/minimal/.emacs Visit an org file and try latex exporting. If that works, then your init file is screwed up. If it doesn't, then your org-mode installation is screwed up. Nick