From mboxrd@z Thu Jan 1 00:00:00 1970 From: Graham Smith Subject: Re: Re: Positioning Latex diagram on PDF output Date: Mon, 10 Aug 2009 13:11:45 +0100 Message-ID: <2c75873c0908100511k6c7f5473v783052f11d40d635@mail.gmail.com> References: <2c75873c0908081129l4b0120a6o2537346bd32f31a7@mail.gmail.com> <2c75873c0908081414xd08208r6a3aa63f914c5eb2@mail.gmail.com> <2c75873c0908090033x1a1f8d8as7887c3ab099462f7@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MaTjE-0002mD-A6 for emacs-orgmode@gnu.org; Mon, 10 Aug 2009 08:11:52 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MaTj9-0002lj-TJ for emacs-orgmode@gnu.org; Mon, 10 Aug 2009 08:11:52 -0400 Received: from [199.232.76.173] (port=35394 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MaTj9-0002lg-O9 for emacs-orgmode@gnu.org; Mon, 10 Aug 2009 08:11:47 -0400 Received: from mail-fx0-f205.google.com ([209.85.220.205]:58599) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MaTj9-00043m-D3 for emacs-orgmode@gnu.org; Mon, 10 Aug 2009 08:11:47 -0400 Received: by fxm1 with SMTP id 1so2241934fxm.31 for ; Mon, 10 Aug 2009 05:11:45 -0700 (PDT) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org leo 2009/8/9 Leo : > On 2009-08-09 08:33 +0100, Graham Smith wrote: >> Leo, >> >> Thanks again, it seems the answer lies in Latex, rather than OrgMode, >> so I will work =C2=A0away at that. >> >> having said that, the commands you gave me are extremely useful for >> making a stand alone diagram to insert as a graphic into some other >> document. So well worth knowing. > > You're welcome, Graham. > > Leo Just for completeness, and should anyone search the forum with a similar problem,the answer lay in the wide margins used by default in the article class, so new headers are: #+LATEX_HEADER: \usepackage{tikz} #+LATEX_HEADER: \usetikzlibrary{mindmap,trees} #+LATEX_HEADER: \usepackage[a4paper, left=3D3cm,right=3D2cm]{geometry} Plus you can scale the tikz drawing using \begin{tikzpicture}[scale=3D0.85] However, it doesn't scale very well and the different elements do not scale proportionally, so while it works fine for a small tweak, it is useless for the large changes. Graham