From mboxrd@z Thu Jan 1 00:00:00 1970 From: Graham Smith Subject: Re: Re: [babel] captions and figure size on export Date: Mon, 8 Mar 2010 10:14:00 +0000 Message-ID: <2c75873c1003080214l72c6781ck1d4213a07d494088@mail.gmail.com> References: <2c75873c1003071453w78b2d8c9wd1e7fb97432e462e@mail.gmail.com> <2c75873c1003080110i3d15a148qa3c4b3f41d70ffb5@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NoZyO-0000IY-Li for emacs-orgmode@gnu.org; Mon, 08 Mar 2010 05:14:04 -0500 Received: from [140.186.70.92] (port=50150 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NoZyN-0000GP-H4 for emacs-orgmode@gnu.org; Mon, 08 Mar 2010 05:14:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NoZyM-0007mZ-UD for emacs-orgmode@gnu.org; Mon, 08 Mar 2010 05:14:03 -0500 Received: from mail-ww0-f41.google.com ([74.125.82.41]:44757) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NoZyM-0007mQ-O6 for emacs-orgmode@gnu.org; Mon, 08 Mar 2010 05:14:02 -0500 Received: by wwg30 with SMTP id 30so2466119wwg.0 for ; Mon, 08 Mar 2010 02:14:02 -0800 (PST) In-Reply-To: <2c75873c1003080110i3d15a148qa3c4b3f41d70ffb5@mail.gmail.com> 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 This is driving me mad here: I have removed all the fig and size code and replaced it with onky one line that should be resizing the first graph(FloweringBoxplot.pdf). However, its resizing the second graph (NonFloweringBoxplot/pdf) and not affecting the first graph. This works on other files, so I am really at a loss here. #+srcname:BoxplotFlowering #+begin_src R :session daf :file FloweringBoxplot.pdf :exports both boxplot(daf$Flower~daf $YEAR) #+end_src #+ATTR_LaTeX: width=10cm #+results: BoxplotFlowering [[file:FloweringBoxplot.pdf]] #+srcname:BoxplotNonFlowering #+begin_src R :session daf :file NonFloweringBoxplot.pdf :exports both boxplot(daf$No.Flower~daf$YEAR) #+end_src #+results: BoxplotNonFlowering [[file:NonFloweringBoxplot.pdf]] Graham