emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: "Charles C. Berry" <ccberry@ucsd.edu>
To: Alan Schmitt <alan.schmitt@polytechnique.org>
Cc: emacs-orgmode <emacs-orgmode@gnu.org>
Subject: Re: shorter syntax for both latex and html export of a figure
Date: Mon, 7 Mar 2016 08:34:36 -0800	[thread overview]
Message-ID: <alpine.OSX.2.20.1603070828120.763@charles-berrys-macbook.local> (raw)
In-Reply-To: <m2egbmy3qz.fsf@charm-ecran.irisa.fr>

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.

HTH,

Chuck

  reply	other threads:[~2016-03-07 16:34 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-07 10:35 shorter syntax for both latex and html export of a figure Alan Schmitt
2016-03-07 16:34 ` Charles C. Berry [this message]
2016-03-08 10:33   ` Alan Schmitt
2016-03-08 13:46     ` Alan Schmitt

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=alpine.OSX.2.20.1603070828120.763@charles-berrys-macbook.local \
    --to=ccberry@ucsd.edu \
    --cc=alan.schmitt@polytechnique.org \
    --cc=emacs-orgmode@gnu.org \
    /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).