From: Stephen Tucker <brown_emu@yahoo.com>
To: nicholas.dokos@hp.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 12:11:54 -0700 (PDT) [thread overview]
Message-ID: <813754.54567.qm@web39708.mail.mud.yahoo.com> (raw)
In-Reply-To: <31875.1251644646@gamaville.dokosmarshall.org>
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
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?
Thanks...!
Stephen
----- Original Message ----
From: Nick Dokos <nicholas.dokos@hp.com>
To: Stephen Tucker <brown_emu@yahoo.com>
Cc: emacs-orgmode@gnu.org; nicholas.dokos@hp.com
Sent: Sunday, August 30, 2009 8:04:06 AM
Subject: Re: [Orgmode] export (as latex) a large number of org files in a directory
Stephen Tucker <brown_emu@yahoo.com> wrote:
> Hi, I am trying to export a bunch of .org files stored in a directory as latex files. I have tried two methods:
>
> (1) -------------------------------------------------------------------------------------------
> At the bash prompt (I am using OS X):
>
> bash$ emacs --batch
> --load=/Applications/Emacs.app/Contents/Resources/lisp/org/org.elc
> --visit=file.org --funcall org-export-as-latex-batch'
>
> and I get an error:
> "Cannot open load file: subst-ksc"
>
> If I can get this to work, then I can embed this system call in a shell script and call it iteratively on a list of .org files retrieved from, say, Python or Bash (changing 'file.org' appropriately each time).
>
Did you escape the newlines? If you cut-n-pasted from the
org-export-as-latex-batch help, you fell into the trap :-) Maybe the
documentation of the function could be changed to add the backslashes?
The following script (I call it org-to-latex) works fine on linux:
--8<---------------cut here---------------start------------->8---
#! /bin/bash
orglib=$HOME/elisp/org-mode/lisp
emacs --batch \
--load=$orglib/org.elc \
--eval "(setq org-export-headline-levels 2)" \
--visit=$1 --funcall org-export-as-latex-batch
--8<---------------cut here---------------end--------------->8---
You can add a loop in it too - or do the loop by hand:
--8<---------------cut here---------------start------------->8---
for x in *.org
do
org-to-latex $x
done
--8<---------------cut here---------------end--------------->8---
HTH,
Nick
next prev parent reply other threads:[~2009-08-30 19:12 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 [this message]
2009-08-31 2:27 ` Nick Dokos
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=813754.54567.qm@web39708.mail.mud.yahoo.com \
--to=brown_emu@yahoo.com \
--cc=emacs-orgmode@gnu.org \
--cc=nicholas.dokos@hp.com \
/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).