From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: #+LATEX_CLASS: IEEEtran Date: Tue, 16 Oct 2012 06:21:08 -0400 Message-ID: <11122.1350382868@alphaville> References: <9619.1350380316@alphaville> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([208.118.235.92]:46350) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TO4Gz-0001a6-JO for emacs-orgmode@gnu.org; Tue, 16 Oct 2012 06:21:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TO4Gt-0005Ni-3i for emacs-orgmode@gnu.org; Tue, 16 Oct 2012 06:21:17 -0400 Received: from g1t0026.austin.hp.com ([15.216.28.33]:9640) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TO4Gs-0005Nd-VE for emacs-orgmode@gnu.org; Tue, 16 Oct 2012 06:21:11 -0400 In-Reply-To: Message from Sanjib Sikder of "Tue, 16 Oct 2012 15:42:47 +0530." 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: Sanjib Sikder Cc: emacs-orgmode@gnu.org Sanjib Sikder wrote: > Hi, Dokos, > > Thanks again. > > After incorporating those lines, I am getting following error. > > File error: Cannot open load file, org-e-latex > > If it is complex (as I am new in orgmode), then I will go for normal latex instead of orgmode for > this particular task as I have a template for IEEEtran but I would love to do the job in orgmode. > > Eagerly waiting for your comments > Two options: o if you are not going to use the new exporter, just delete the two lines: (require 'org-e-latex) (add-to-list 'org-e-latex-classes ieeetran-class t) o alternatively, teach emacs where to find org-e-latex by augmenting the load-path: (add-to-list 'load-path "/path/to/org/mode/contrib/lisp") This needs to be done before the (require 'org-e-latex) and of course, the path needs to be modified for your particular setup. Nick