From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: #+BEGIN_HTML in beamer export Date: Mon, 15 Jul 2013 14:29:09 -0400 Message-ID: <87vc4beky2.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44933) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UynWb-0008Ne-VS for emacs-orgmode@gnu.org; Mon, 15 Jul 2013 14:29:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UynWb-0007sr-5D for emacs-orgmode@gnu.org; Mon, 15 Jul 2013 14:29:29 -0400 Received: from plane.gmane.org ([80.91.229.3]:43522) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UynWa-0007si-Uc for emacs-orgmode@gnu.org; Mon, 15 Jul 2013 14:29:29 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UynWZ-0005Yc-1T for emacs-orgmode@gnu.org; Mon, 15 Jul 2013 20:29:27 +0200 Received: from pool-108-7-96-134.bstnma.fios.verizon.net ([108.7.96.134]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 15 Jul 2013 20:29:27 +0200 Received: from ndokos by pool-108-7-96-134.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 15 Jul 2013 20:29:27 +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 I have a dot source block in a presentation that produces SVG. I use the svg.sty package to get the image processed to pdf and included in the presentation (I only export to latex and use a Makefile to go the rest of the way to PDF, because I have some more stuff to do in between): --8<---------------cut here---------------start------------->8--- * foo #+name: foo #+BEGIN_SRC dot :file images/machines.svg :exports none :results file digraph foo { size="4.9,3.1"; page="4.9,3.0"; ratio=auto; /* center=1; */ nodesep=.3 ranksep=.3 /* rankdir=LR */ node [shape="box"]; node [fontsize=18]; g -> h [style=dashed]; h -> g [style=dashed]; h -> c; c -> t; h -> p [color=lightgray]; c -> p [style=dotted]; p -> t [style=dotted]; t -> r [color=darkgreen]; } #+END_SRC #+BEGIN_HTML #+RESULTS: foo [[file:images/machines.svg]] #+END_HTML #+BEGIN_LaTeX \includesvg[clean]{machines} #+END_LaTeX --8<---------------cut here---------------end--------------->8--- But it is convenient to do C-c C-c in the code block and then click the file link to do a quick check on the image, so I thought I'd put the result in a BEGIN_HTML block, so it would not contaminate the latex output (and if I exported to HTML, I'd get the image too). That works fine iff I don't have a #+RESULTS line (or I comment it out with another #), otherwise I get literal \#+BEGIN_HTML \#END_HTML in the latex output. Bug or confusion on my part? -- Nick