* Specify org-latex-pdf-process for a single file?
@ 2015-07-20 1:35 Vikas Rawal
2015-07-20 2:15 ` Thomas S. Dye
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Vikas Rawal @ 2015-07-20 1:35 UTC (permalink / raw)
To: org-mode mailing list
How do I specify org-latex-pdf-process for a single file? I am working on a book manuscript, where I need to run makeindex and biber, along with xelatex. That is not normally needed in every document. Can I org-latex-pdf-process in the document itself?
Vikas
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Specify org-latex-pdf-process for a single file?
2015-07-20 1:35 Specify org-latex-pdf-process for a single file? Vikas Rawal
@ 2015-07-20 2:15 ` Thomas S. Dye
2015-07-20 9:13 ` Rasmus
2015-07-20 10:29 ` Eric S Fraga
2 siblings, 0 replies; 6+ messages in thread
From: Thomas S. Dye @ 2015-07-20 2:15 UTC (permalink / raw)
To: Vikas Rawal; +Cc: org-mode mailing list
Aloha Vikas,
Vikas Rawal <vikaslists@agrarianresearch.org> writes:
> How do I specify org-latex-pdf-process for a single file? I am working on a book manuscript, where I need to run makeindex and biber, along with xelatex. That is not normally needed in every document. Can I org-latex-pdf-process in the document itself?
Yes, you can use a local variable.
I like to store configuration components in the library of babel and
call them from there.
So, I have is in the library:
#+name: set-pdf-process-biber
#+header: :results silent
#+begin_src emacs-lisp
(setq org-latex-pdf-process
'("pdflatex -interaction nonstopmode -output-directory %o %f"
"biber %b"
"pdflatex -interaction nonstopmode -output-directory %o %f"
"pdflatex -interaction nonstopmode -output-directory %o %f"))
#+end_src
Near the bottom of my document, in a heading tagged :noexport:, I have
this:
# Local Variables:
# eval: (sbe "set-pdf-process-biber")
hth,
Tom
--
Thomas S. Dye
http://www.tsdye.com
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Specify org-latex-pdf-process for a single file?
2015-07-20 1:35 Specify org-latex-pdf-process for a single file? Vikas Rawal
2015-07-20 2:15 ` Thomas S. Dye
@ 2015-07-20 9:13 ` Rasmus
2015-07-20 10:29 ` Eric S Fraga
2 siblings, 0 replies; 6+ messages in thread
From: Rasmus @ 2015-07-20 9:13 UTC (permalink / raw)
To: emacs-orgmode
Vikas Rawal <vikaslists@agrarianresearch.org> writes:
> How do I specify org-latex-pdf-process for a single file? I am working
> on a book manuscript, where I need to run makeindex and biber, along
> with xelatex. That is not normally needed in every document. Can I
> org-latex-pdf-process in the document itself?
I'd just use "latexmk -xelatex". It supports makeindex and biber out of
the box. Bind org-latex-pdf-process it or use a file-local variable.
Also, feel free to test my recent patch for changing the latex variant on
a file to file basis.
Rasmus
--
And I faced endless streams of vendor-approved Ikea furniture. . .
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Specify org-latex-pdf-process for a single file?
2015-07-20 1:35 Specify org-latex-pdf-process for a single file? Vikas Rawal
2015-07-20 2:15 ` Thomas S. Dye
2015-07-20 9:13 ` Rasmus
@ 2015-07-20 10:29 ` Eric S Fraga
2015-07-20 15:49 ` Vikas Rawal
2 siblings, 1 reply; 6+ messages in thread
From: Eric S Fraga @ 2015-07-20 10:29 UTC (permalink / raw)
To: Vikas Rawal; +Cc: org-mode mailing list
On Monday, 20 Jul 2015 at 07:05, Vikas Rawal wrote:
> How do I specify org-latex-pdf-process for a single file? I am working
> on a book manuscript, where I need to run makeindex and biber, along
> with xelatex. That is not normally needed in every document. Can I
> org-latex-pdf-process in the document itself?
>
> Vikas
I have the following at the end of most of my org files that are
intended to be exported to LaTeX et al.:
--8<---------------cut here---------------start------------->8---
# Local Variables:
# org-export-allow-bind-keywords: t
# org-latex-pdf-process: ("pdflatex %f")
# eval: (esf/execute-startup-block)
# End:
--8<---------------cut here---------------end--------------->8---
where the src block esf/execute-startup-block does more general file
specific settings. Obviously, adapt the pdf process variable to your
needs.
--
: Eric S Fraga (0xFFFCF67D), Emacs 25.0.50.1, Org release_8.3beta-1260-gcedef7
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Specify org-latex-pdf-process for a single file?
2015-07-20 10:29 ` Eric S Fraga
@ 2015-07-20 15:49 ` Vikas Rawal
2015-07-27 8:42 ` Sebastien Vauban
0 siblings, 1 reply; 6+ messages in thread
From: Vikas Rawal @ 2015-07-20 15:49 UTC (permalink / raw)
To: Eric S Fraga; +Cc: org-mode mailing list
Thanks all. I was not familiar with this way of defining local variables. Just checked the relevant part of the manual. Very useful.
Thanks,
Vikas
> On 20-Jul-2015, at 3:59 pm, Eric S Fraga <e.fraga@ucl.ac.uk> wrote:
>
> On Monday, 20 Jul 2015 at 07:05, Vikas Rawal wrote:
>> How do I specify org-latex-pdf-process for a single file? I am working
>> on a book manuscript, where I need to run makeindex and biber, along
>> with xelatex. That is not normally needed in every document. Can I
>> org-latex-pdf-process in the document itself?
>>
>> Vikas
>
> I have the following at the end of most of my org files that are
> intended to be exported to LaTeX et al.:
>
> --8<---------------cut here---------------start------------->8---
> # Local Variables:
> # org-export-allow-bind-keywords: t
> # org-latex-pdf-process: ("pdflatex %f")
> # eval: (esf/execute-startup-block)
> # End:
> --8<---------------cut here---------------end--------------->8---
>
> where the src block esf/execute-startup-block does more general file
> specific settings. Obviously, adapt the pdf process variable to your
> needs.
>
> --
> : Eric S Fraga (0xFFFCF67D), Emacs 25.0.50.1, Org release_8.3beta-1260-gcedef7
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2015-07-27 8:42 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-20 1:35 Specify org-latex-pdf-process for a single file? Vikas Rawal
2015-07-20 2:15 ` Thomas S. Dye
2015-07-20 9:13 ` Rasmus
2015-07-20 10:29 ` Eric S Fraga
2015-07-20 15:49 ` Vikas Rawal
2015-07-27 8:42 ` Sebastien Vauban
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.