From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?Q?J=C3=A9r=C3=A9my_Compostella?= Subject: Re: [odt] [PATCH] Anchoring image to a page Date: Thu, 24 Nov 2011 22:31:19 +0100 Message-ID: <86zkflxl5k.fsf@gmail.com> References: <81pqgh4bon.fsf@gmail.com> <86ipm9gvgq.fsf@gmail.com> <817h2pxodk.fsf_-_@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:60889) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RTgtC-0003AQ-4e for emacs-orgmode@gnu.org; Thu, 24 Nov 2011 16:31:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RTgtA-0005T0-88 for emacs-orgmode@gnu.org; Thu, 24 Nov 2011 16:31:26 -0500 Received: from mail-bw0-f41.google.com ([209.85.214.41]:34667) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RTgt9-0005Sw-VB for emacs-orgmode@gnu.org; Thu, 24 Nov 2011 16:31:24 -0500 Received: by bke17 with SMTP id 17so3973450bke.0 for ; Thu, 24 Nov 2011 13:31:23 -0800 (PST) In-Reply-To: <817h2pxodk.fsf_-_@gmail.com> (Jambunathan K.'s message of "Fri, 25 Nov 2011 01:51:43 +0530") 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: Jambunathan K Cc: emacs-orgmode@gnu.org Jambunathan K writes: > Jeremy > >> What about the second patch ? I'm very interested in seeing it >> merged. > > I did a quick run of the attached patch (authored by you). > > When I do this: > > #+ATTR_ODT: :anchor page > [[./org-mode-unicorn.png]] > > I see that the image is anchored to the page as expected. But the moment > I attach a caption and label to it like this: > > #+CAPTION: caption > #+LABEL: label > #+ATTR_ODT: :anchor page > [[./org-mode-unicorn.png]] > > the image is no longer anchored to the page. I need to make additional > modifications to achieve the desired effect for captioned images. (Let > me do this modification myself.) OK. > I am wondering what your use case is. For example, when someone does > this: > > #+ATTR_ODT: :anchor page > [[./org-mode-unicorn.png]] > > some text > > #+ATTR_ODT: :anchor page > [[./org-mode-unicorn.png]] > > what do you think should be the desired behaviour. Practically, I see > that the images get super-posed one on top of the other on the same page > (i.e, effectively I see only one image). I am wondering what the trick > is to embed multiple page anchored images in the document. You get the "correct" behavior :) The trick is : you write text and text and text. Sometimes, you want to add a picture but you don't want a page break. For example, you want to add a big illustration. To render correctly, the picture needs its own page but you don't want to break the page. In this case you need to anchor the picture to the "page". I made an example based on the road book I'm working on : http://www.jerryland.fr/tatw/WorldTrip.odt. Quick example visible on pages 20 and 23. For information, the first map inclusion was at the beginning of 2.1.1 and the second map inclusion at the beginning of 2.3.1. Obviously if you anchor consecutively two pictures to the "same page", you could be disappointed by the result but it's an issue you have to address with some others parameters which I do not know actually. Finally the patch I was talking about is not this one but the one attached to http://comments.gmane.org/gmane.emacs.orgmode/49548. I really need it because this bug lead to at least 50 seconds more to generate my ODT file. > From 213cfc2a9c44a93639afe460fe2f8dbee793bcd1 Mon Sep 17 00:00:00 2001 > From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Compostella?= > Date: Fri, 18 Nov 2011 16:39:17 +0100 > Subject: [PATCH] org-odt.el: Add page anchor image type support. > > This patch enables : > - The possibility to select the image anchor type with the ATTR_ODT tag > - The "page" anchor type > This patch is very useful to get "floating pictures". > --- > contrib/lisp/org-odt.el | 15 +++++++++------ > contrib/odt/styles/OrgOdtStyles.xml | 5 +++++ > 2 files changed, 14 insertions(+), 6 deletions(-) > > diff --git a/contrib/lisp/org-odt.el b/contrib/lisp/org-odt.el > index 81abf5d..1d60b13 100644 > --- a/contrib/lisp/org-odt.el > +++ b/contrib/lisp/org-odt.el > @@ -1495,12 +1495,12 @@ ATTR is a string of other attributes of the a element." > (latex-frag (org-find-text-property-in-string > 'org-latex-src src)) > (category (and latex-frag "__DvipngImage__")) > - (embed-as (or embed-as > - (if latex-frag > - (or (org-find-text-property-in-string > - 'org-latex-src-embed-type src) 'character) > - 'paragraph))) > (attr-plist (org-lparse-get-block-params attr)) > + (embed-as (cond (embed-as) > + (latex-frag (or (org-find-text-property-in-string > + 'org-latex-src-embed-type src) 'character)) > + ((plist-get attr-plist :anchor)) > + ('paragraph))) > (size (org-odt-image-size-from-file > src (plist-get attr-plist :width) > (plist-get attr-plist :height) > @@ -1514,6 +1514,7 @@ ATTR is a string of other attributes of the a element." > (case embed-as > (paragraph (org-odt-format-entity "DisplayImage" href width height)) > (character (org-odt-format-entity "InlineImage" href width height)) > + (page (org-odt-format-entity "PageImage" href width height)) > (t (error "Unknown value for embed-as %S" embed-as)))) > (t > (org-odt-format-entity > @@ -1565,6 +1566,7 @@ ATTR is a string of other attributes of the a element." > (defvar org-odt-entity-frame-styles > '(("InlineImage" "__Figure__" ("OrgInlineImage" nil "as-char")) > ("DisplayImage" "__Figure__" ("OrgDisplayImage" nil "paragraph")) > + ("PageImage" "__Figure__" ("OrgPageImage" nil "page")) > ("CaptionedDisplayImage" "__Figure__" > ("OrgCaptionedImage" > " style:rel-width=\"100%\" style:rel-height=\"scale\"" "paragraph") > @@ -1619,7 +1621,8 @@ ATTR is a string of other attributes of the a element." > > (defvar org-export-odt-default-image-sizes-alist > '(("character" . (5 . 0.4)) > - ("paragraph" . (5 . 5))) > + ("paragraph" . (5 . 5)) > + ("page" . (5 . 5))) > "Hardcoded image dimensions one for each of the anchor > methods.") > > diff --git a/contrib/odt/styles/OrgOdtStyles.xml b/contrib/odt/styles/OrgOdtStyles.xml > index 5ec868a..df4f3f4 100644 > --- a/contrib/odt/styles/OrgOdtStyles.xml > +++ b/contrib/odt/styles/OrgOdtStyles.xml > @@ -375,6 +375,11 @@ > > > > + > + > + > + > + > > > > -- > 1.7.5.4 -- Sent from my Emacs