From mboxrd@z Thu Jan 1 00:00:00 1970 From: Graham Smith Subject: Positioning Latex diagram on PDF output Date: Sat, 8 Aug 2009 19:29:30 +0100 Message-ID: <2c75873c0908081129l4b0120a6o2537346bd32f31a7@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MZqfh-0005dr-5q for emacs-orgmode@gnu.org; Sat, 08 Aug 2009 14:29:37 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MZqfc-0005d8-M9 for emacs-orgmode@gnu.org; Sat, 08 Aug 2009 14:29:36 -0400 Received: from [199.232.76.173] (port=45794 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MZqfc-0005d5-Im for emacs-orgmode@gnu.org; Sat, 08 Aug 2009 14:29:32 -0400 Received: from mail-bw0-f222.google.com ([209.85.218.222]:35650) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MZqfc-0001rY-0d for emacs-orgmode@gnu.org; Sat, 08 Aug 2009 14:29:32 -0400 Received: by bwz22 with SMTP id 22so1974436bwz.42 for ; Sat, 08 Aug 2009 11:29:30 -0700 (PDT) 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 I am experimenting with a TiKZ/pgf mindmap in orgmode. Although it looks as if it should fit on the (A4) PDF page, it is offset to the right and cut off, even though there seems to plenty of room on the page to left of the diagram. The code is just the example from the manual, which I have modified a bit, and is shown below. Is there some way of moving it across to the left a bit, so it will fit on the page? Many thanks, Graham \begin{tikzpicture} \path[mindmap,concept color=black,text=white] node[concept] {Ecological Impact Assessment} [clockwise from=0] child[concept color=green!50!black] { node[concept] {Ecology} [clockwise from=90] child { node[concept] {theory} } child { node[concept] {field skills} } child { node[concept] {methods} } child { node[concept] {software engineer\-ing} } } child[concept color=blue] { node[concept] {Legislation} [clockwise from=-30] child { node[concept] {EIA} } child { node[concept] {Policy and Planning} } } child[concept color=red] { node[concept] {Data Analysis} [clockwise from=-30] child{node[concept]{Statistics}} child{node[concept]{GIS}} child{node[concept]{Decision Science}} } child[concept color=orange] { node[concept] {Professional Practice} [clockwise from=-75] child{node[concept]{Business skills}} child{node[concept]{Presentation skills}} child{node[concept]{EcIA best practice}} }; \end{tikzpicture}