From mboxrd@z Thu Jan 1 00:00:00 1970 From: Russell Adams Subject: Re: Re: Latex exporting Date: Thu, 25 Sep 2008 00:42:45 -0500 Message-ID: <20080925054245.GJ11943@thinkpad.adamsinfoserv.com> References: <20080729234636.GA9366@thinkpad.adamsinfoserv.com> <20080806213241.GG24521@thinkpad.adamsinfoserv.com> <20080910223202.GD6911@thinkpad.adamsinfoserv.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="47eKBCiAZYFK5l32" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Kijcs-00042R-9F for emacs-orgmode@gnu.org; Thu, 25 Sep 2008 01:42:54 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Kijcq-00041P-24 for emacs-orgmode@gnu.org; Thu, 25 Sep 2008 01:42:53 -0400 Received: from [199.232.76.173] (port=56356 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Kijcp-00041F-RP for emacs-orgmode@gnu.org; Thu, 25 Sep 2008 01:42:51 -0400 Received: from squirtle.drak.net ([72.52.144.201]:59566) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Kijcp-0002vt-OJ for emacs-orgmode@gnu.org; Thu, 25 Sep 2008 01:42:51 -0400 Received: from [206.180.154.148] (helo=localhost) by squirtle.drak.net with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.69) (envelope-from ) id 1KijcY-0003vu-8d for emacs-orgmode@gnu.org; Thu, 25 Sep 2008 00:42:36 -0500 Content-Disposition: inline In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --47eKBCiAZYFK5l32 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Sep 24, 2008 at 12:52:46AM +0000, Frank Dekens wrote: > > All that to say: Can you please post a copy of that makefile, because I > have no idea how to invoke all those commands that way. Poof! And there was a Makefile, and it was good. Place it in the directory with the org file you want to export, and run make. It grabs *.org. Enjoy! ------------------------------------------------------------------ Russell Adams RLAdams@AdamsInfoServ.com PGP Key ID: 0x1160DCB3 http://www.adamsinfoserv.com/ Fingerprint: 1723 D8CA 4280 1EC9 557F 66E8 1154 E018 1160 DCB3 --47eKBCiAZYFK5l32 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=Makefile .PHONY: all clean OBJS := $(patsubst %.org, %.pdf, $(wildcard *.org)) CRAP := $(patsubst %.org, %.pdf, $(wildcard *.org)) CRAP += $(patsubst %.org, %.aux, $(wildcard *.org)) CRAP += $(patsubst %.org, %.log, $(wildcard *.org)) CRAP += $(patsubst %.org, %.out, $(wildcard *.org)) CRAP += $(patsubst %.org, %.toc, $(wildcard *.org)) all: $(OBJS) clean: rm -f $(CRAP) %.tex: %.org emacs --eval '(setq enable-local-variables :all)' \ $< \ -f org-export-as-latex \ -f save-buffers-kill-emacs %.pdf: %.tex pdflatex $< pdflatex $< --47eKBCiAZYFK5l32 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --47eKBCiAZYFK5l32--