emacs-orgmode
[Top][All Lists]
Advanced

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

[O] Problems with LaTeX source block


From: Julien Cubizolles
Subject: [O] Problems with LaTeX source block
Date: Mon, 15 Jul 2013 10:34:49 +0200
User-agent: Gnus/5.130008 (Ma Gnus v0.8) Emacs/24.3.50 (gnu/linux)

I'm struggling with LaTeX source blocks and am not sure anymore if one
can use the :results file header.

I have a csv file to be processed by tikz to get a png picture displayed
in my org buffer. 

Here is what I tried 

#+NAME: python-tikz
#+header: :results file :file py2tikz_sin.png
#+header: :fit yes :headers '("\\usepackage{tikz,pgfplots}")
#+BEGIN_SRC latex :exports results
  \begin{tikzpicture}
    \begin{axis}
      \addplot  table {sin_py2csv.csv};
    \end{axis}
  \end{tikzpicture}
'py2tikz_sin.png'
#+END_SRC

#+RESULTS: python-tikz
#+BEGIN_LaTeX
[[file:py2tikz_sin.png]]
#+END_LaTeX

Two problems with that: the py2tikz_sin.png file isn't produced (the
latex code is correct though) and I was under the impression that the
:results file header should give a #RESULTS without the LaTeX block
(it's what I get for python blocks anyway).

The data is produced by python (I can get python-babel to work !) and I
could get a png directly through python-babel but latex-babel should be
able to do it, right ?

Julien.




reply via email to

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