emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Eric Schulte <schulte.eric@gmail.com>
To: Andreas Leha <andreas.leha@med.uni-goettingen.de>
Cc: emacs-orgmode@gnu.org
Subject: Re: tikz for multiple targets
Date: Thu, 11 Jul 2013 10:07:15 -0600	[thread overview]
Message-ID: <87ehb55bcn.fsf@gmail.com> (raw)
In-Reply-To: 878v1ds73o.fsf@med.uni-goettingen.de

[-- Attachment #1: Type: text/plain, Size: 453 bytes --]

>
> This is very nice and works well for me.  I would very much like to see
> that in orgmode.  Thanks a lot!
>

Great, I've just committed this patch.  Thanks for your original example
which this simply extends.

>
> How do I extend your example to output latex for latex, svg for html and
> png in all other cases?
>

The attached does this.  The catch is that the :imagemagick header
argument is required for png (and other) image types to be used.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: tikz-pdf-svg.org --]
[-- Type: text/x-org, Size: 1043 bytes --]

#+LATEX_HEADER: \usepackage{tikz}

First execute the second code block, to define the convenience macro
and to set the required new variables in ob-latex.el.  Then export to
HTML and to pdf to see the tree exported as an SVG image and as
embedded tikz respectively.

* Tikz test
Here's a tree, exported to both html and pdf.

#+header: :file (by-backend (html "tree.svg") (pdf 'nil) (t "tree.png"))
#+header: :imagemagick
#+header: :results (by-backend (pdf "latex") (t "raw"))
#+begin_src latex
  \usetikzlibrary{trees}
  \begin{tikzpicture}
    \node [circle, draw, fill=red!20] at (0,0) {1}
    child { node [circle, draw, fill=blue!30] {2}
      child { node [circle, draw, fill=green!30] {3} }
      child { node [circle, draw, fill=yellow!30] {4} }};
  \end{tikzpicture}
#+end_src

#+RESULTS:
[[file:tree.png]]

* COMMENT setup
#+begin_src emacs-lisp :results silent
  (setq org-babel-latex-htlatex "htlatex")
  (defmacro by-backend (&rest body)
    `(case (if (boundp 'backend) (org-export-backend-name backend) nil) ,@body))
#+end_src

[-- Attachment #3: Type: text/plain, Size: 55 bytes --]


Cheers,

-- 
Eric Schulte
http://cs.unm.edu/~eschulte

  reply	other threads:[~2013-07-11 16:09 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-09 22:34 tikz for multiple targets Eric S Fraga
2013-07-10  9:50 ` Rasmus
2013-07-10  9:54   ` Rasmus
2013-07-10 10:16     ` Fabrice Popineau
2013-07-10 10:56   ` Eric S Fraga
2013-07-10 20:44     ` Andreas Leha
2013-07-11  6:11       ` Eric Schulte
2013-07-11  8:38         ` Rasmus
2013-07-11 16:01           ` Eric Schulte
2013-07-11 10:50         ` Andreas Leha
2013-07-11 16:07           ` Eric Schulte [this message]
2013-07-11 18:56             ` Andreas Leha
2013-07-11 19:03               ` Eric Schulte
2013-07-11 23:15                 ` Andreas Leha
2013-07-11 22:33             ` Eric S Fraga
2013-07-12  0:20               ` Eric Schulte
2013-07-15 13:11                 ` Eric S Fraga
2013-07-16 11:31                 ` Eric S Fraga
2013-07-16 12:26                   ` Andreas Leha
2013-07-16 15:18                     ` Eric S Fraga
2013-07-11  7:21       ` Eric S Fraga
2013-07-11 15:58         ` Eric Schulte

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=87ehb55bcn.fsf@gmail.com \
    --to=schulte.eric@gmail.com \
    --cc=andreas.leha@med.uni-goettingen.de \
    --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).