|
| From: | Nick Dokos |
| Subject: | Re: [Orgmode] Re: One org file, multiple exports, is it possible? |
| Date: | Wed, 26 May 2010 17:37:55 -0400 |
Thomas S. Dye <address@hidden> wrote:
> ("work"
> :base-directory "~/org/temp/"
> :base-extension "org"
> :publishing-directory "~/org/temp/publish-work/"
> :publishing-function org-publish-org-to-latex
> :select-tags ("@WORK")
> :title "Work Notes"
> :include ("index.org") <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
> :exclude "\\.org$"
> )
> ))
> ---- .minimal.emacs -----
>
> Debugger entered--Lisp error: (wrong-type-argument stringp
> ("index.org")) <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
This is complaining that ``("index.org")'' is not a string, and indeed
it isn't: it's a list with one element. Should the :include line above
be
:include "index.org"
perhaps? But I'm shooting from the hip here, so take it with the appropriate
grain of salt.
Nick
| [Prev in Thread] | Current Thread | [Next in Thread] |