I have gotten many good ideas from these replies to my question. Thanks to all.
> On Mar 7, 2016, at 10:10 AM, Loris Bennett wrote:
>
> Eric S Fraga writes:
>
>> On Monday, 7 Mar 2016 at 09:55, Loris Bennett wrote:
>>
>> [...]
>>
>>> Would you be able to share what you load in custom.el an
Eric S Fraga writes:
> On Monday, 7 Mar 2016 at 09:55, Loris Bennett wrote:
>
> [...]
>
>> Would you be able to share what you load in custom.el and esf-org.el, or
>> a least explain what needs to be done?
>
> My custom.el is the emacs customisations (for variables and faces that
> usually ends
On Monday, 7 Mar 2016 at 09:55, Loris Bennett wrote:
[...]
> Would you be able to share what you load in custom.el and esf-org.el, or
> a least explain what needs to be done?
My custom.el is the emacs customisations (for variables and faces that
usually ends up in your .emacs) and esf-org.el is
Here's a simple (GNU make) makefile to export something in batch mode:
--8<---cut here---start->8---
%.html: %.org
emacs -batch -l batch-export.el --eval "(batch-org-export-as 'html)" $<
%.pdf: %.tex
latexmk --shell-escape -pdf -xelatex $<
%.t
Hi Eric,
Eric S Fraga writes:
> On Friday, 4 Mar 2016 at 23:43, Robert Love wrote:
>> Does anyone have a make file example that has emacs load an .org file,
>> process it into LaTeX and export as PDF, all from the command line
>> without the user doing anything more than type ‘make’? All examp
On Friday, 4 Mar 2016 at 23:43, Robert Love wrote:
> Does anyone have a make file example that has emacs load an .org file,
> process it into LaTeX and export as PDF, all from the command line
> without the user doing anything more than type ‘make’? All examples
> appreciated.
I don't a makefile
* Export org-files using a Makefile
#+BEGIN_SRC makefile :tangle Makefile
pdf:
rm -f make-org.pdf
emacs -batch make-org.org -f org-latex-export-to-pdf
open make-org.pdf
#+END_SRC
works for me.
Robert Love writes:
> Does anyone have a make file example that has emacs loa
Hello Bob,
Robert Love writes:
> Does anyone have a make file example that has emacs load an .org file,
> process it into LaTeX and export as PDF, all from the command line
> without the user doing anything more than type ‘make’? All examples
> appreciated.
Fraid I don't have a makefile but I