emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Nick Dokos <nicholas.dokos@hp.com>
To: Stephen Tucker <brown_emu@yahoo.com>
Cc: emacs-orgmode@gnu.org
Subject: Re: export (as latex) a large number of org files in a directory
Date: Sun, 30 Aug 2009 22:27:00 -0400	[thread overview]
Message-ID: <24965.1251685620@gamaville.dokosmarshall.org> (raw)
In-Reply-To: Message from Stephen Tucker <brown_emu@yahoo.com> of "Sun, 30 Aug 2009 12:11:54 PDT." <813754.54567.qm@web39708.mail.mud.yahoo.com>

Stephen Tucker <brown_emu@yahoo.com> wrote:

> Hi Nick, 

> thanks for the response! Actually in the code that I had pasted, the
> emacs --batch call is all on one line (so no need to escape newlines
> there). I tried your code with both

> orglib=/Applications/Emacs.app/Contents/Resources/lisp/org
> and
> orglib=$HOME/elisp/org-mode/lisp

You need the former - the latter is where I keep my org.el[c]

> but got 
> Cannot open load file: org-macs
> in both cases I also added a line, 
> --eval "(load \"/Applications/Emacs.app/Contents/Resources/lisp/org/org.elc\")" \
> to replace the --load option but same deal.
> I do in fact have org-macs in my 'orglib' directories so I tried
> loading them explicitly (with multiple --load specifications), but it
> still doesn't work (Still "Cannot open load file" pointing to some org
> file or subst-ksc, depending on how many or in what order org .el
> files are loaded). Any more ideas?
> 

The problem is probably that --batch implies -q, so .emacs is *not*
loaded and you don't get your load-path customizations. Maybe
something like this will work (the quoting gets hairy, so pay
close attention to all the details):

--8<---------------cut here---------------start------------->8---
#! /bin/bash

orglib=/Applications/Emacs.app/Contents/Resources/lisp/org
emacs   --batch \
         --eval "(add-to-list 'load-path \"$orglib\")"
         --load=$orglib/org.elc \
         --eval "(setq org-export-headline-levels 2)" \
         --visit=$1 --funcall org-export-as-latex-batch
--8<---------------cut here---------------end--------------->8---


HTH,
Nick

  reply	other threads:[~2009-08-31  2:28 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-08-30 14:11 export (as latex) a large number of org files in a directory Stephen Tucker
2009-08-30 15:04 ` Nick Dokos
2009-08-30 19:11   ` Stephen Tucker
2009-08-31  2:27     ` Nick Dokos [this message]
2009-08-31  4:38       ` Nick Dokos
2009-08-31  5:58         ` Stephen Tucker
2009-09-02 15:21   ` Sébastien Vauban

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

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=24965.1251685620@gamaville.dokosmarshall.org \
    --to=nicholas.dokos@hp.com \
    --cc=brown_emu@yahoo.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 public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).