From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: Re: Problems with LaTeX source block Date: Mon, 15 Jul 2013 12:24:33 +0200 Message-ID: <87oba4gly6.fsf@free.fr> References: <8761wcjk5y.fsf@free.fr> <87wqos42vm.fsf@med.uni-goettingen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52394) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uynpo-0004d4-By for emacs-orgmode@gnu.org; Mon, 15 Jul 2013 14:49:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Uynpn-0007Lv-A2 for emacs-orgmode@gnu.org; Mon, 15 Jul 2013 14:49:20 -0400 Received: from plane.gmane.org ([80.91.229.3]:52812) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uynpn-0007Lk-3N for emacs-orgmode@gnu.org; Mon, 15 Jul 2013 14:49:19 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Uynpl-00075o-Jg for emacs-orgmode@gnu.org; Mon, 15 Jul 2013 20:49:17 +0200 Received: from 37.161.154.251 ([37.161.154.251]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 15 Jul 2013 20:49:17 +0200 Received: from j.cubizolles by 37.161.154.251 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 15 Jul 2013 20:49:17 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi Andreas Andreas Leha writes: > try that instead > > #+NAME: python-tikz > #+header: :results raw :file py2tikz_sin.png > #+header: :imagemagick yes :fit yes :headers '("\\usepackage{tikz,pgfplots}") > #+BEGIN_SRC latex :exports results > \begin{tikzpicture} > \node[red!50!black] (a) {A}; > \node (b) [right of=a] {B}; > \draw[->] (a) -- (b); > \end{tikzpicture} > #+END_SRC > for problem one: you are missing the :imagemagick yes header argument, > which is necessary to do the latex->png conversion. Also, the filename > is inserted for you and is, thus, not part of the latex block. Thanks for clarifying it, in the worg page: --8<---------------cut here---------------start------------->8--- The standard :file header argument associated with a LaTeX source code block by itself can take the name of either a Portable Network Graphics (png) or a Portable Document Format (pdf) file. File names for other bitmap file types can be supplied in conjunction with the :imagemagick header argument, described below. --8<---------------cut here---------------end--------------->8--- the "other bitmap file types" led me to believe that imagemagick was not needed for png. > for problem two: :results raw solves that, although I agree that > :results file should work here. If it were to work, what would be the difference ? Would I need to add a command in the LaTeX code to print the name of the file I want to link to ? Thanks for your precious help. I'm always amazed at the responsiveness and helpfulness of this list. Julien, eager to contribute but still not very useful.