From mboxrd@z Thu Jan 1 00:00:00 1970 From: Max Linke Subject: create vector-graphics with org-babel Date: Wed, 09 Sep 2015 09:50:58 +0200 Message-ID: <55EFE4E2.5070700@gmx.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43683) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZZa9o-0008Py-DY for emacs-orgmode@gnu.org; Wed, 09 Sep 2015 03:51:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZZa9l-0001an-6g for emacs-orgmode@gnu.org; Wed, 09 Sep 2015 03:51:04 -0400 Received: from mout.gmx.net ([212.227.15.19]:59848) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZZa9k-0001ag-Ml for emacs-orgmode@gnu.org; Wed, 09 Sep 2015 03:51:00 -0400 Received: from [10.187.1.30] ([194.95.30.129]) by mail.gmx.com (mrgmx002) with ESMTPSA (Nemesis) id 0MCcja-1ZQCUD0pow-009RdI for ; Wed, 09 Sep 2015 09:50:59 +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 Hi I'm trying to use vector graphics in my org document #+BEGIN_SRC ipython :session :file iso.svg :exports results x = np.linspace(0, 10, 100) y = np.sin(x) plt.plot(x, y) #+END_SRC I can run this cell with 'C-c C-c' but I can't export it to latex because it says that svg is currently not supported. Is there a way to include svg (or another type of vector graphics) export into my document. Another interesting thing to know is how I can change the DPI of the produced png? best Max