emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] shorter syntax for both latex and html export of a figure


From: Alan Schmitt
Subject: Re: [O] shorter syntax for both latex and html export of a figure
Date: Tue, 08 Mar 2016 11:33:04 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (darwin)

On 2016-03-07 17:34, "Charles C. Berry" <address@hidden> writes:

> On Mon, 7 Mar 2016, Alan Schmitt wrote:
>
>> Hello,
>>
>> I'm trying to adapt the example that allows to export a figure both to
>> tikz and to png so that I don't have to manually add all the header
>> lines.
>>
>
> Maybe this gets you a step closer
>
> #+begin_src emacs-lisp :results silent
>      (defmacro by-backend (&rest body)
>        `(case (org-bound-and-true-p org-export-current-backend)
>        ,@body))
>
>      (org-babel-do-load-languages
>       'org-babel-load-languages
>       '((latex . t)))
>
>      (defalias 'org-babel-execute:tikz 'org-babel-execute:latex)
>      (defalias 'org-babel-expand-body:tikz 'org-babel-expand-body:latex)
>
>      (add-to-list 'org-src-lang-modes '("tikz" . latex))
>
>    (defvar org-babel-default-header-args:tikz
>      '((:imagemagick . "yes")
>        (:iminoptions . "-density 600")
>        (:imoutoptions . "-geometry 800")
>        (:results . "file raw")
>        (:fit . "yes")
>        (:headers . "(\\usepackage{tikz})")
>        (:exports . "results")))
> #+end_src
>
>
> When I run your tikz src block  interactively I get two files created. Not 
> sure why and I haven't time to edebug step thru the code. But maybe you 
> can handle that bit.

Thank you for the suggestion. At the moment I use a macro (because I
need to put the resulting figure in a figure environment, as I want a
label and caption), but I will give this a try.

Thanks again,

Alan

-- 
OpenPGP Key ID : 040D0A3B4ED2E5C7
Monthly Athmospheric CO₂ (2016-02, Mauna Loa Obs.): 404.02

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]