From mboxrd@z Thu Jan 1 00:00:00 1970 From: Buddy Butterfly Subject: Re: What happened to clocktable in pdf export? Date: Fri, 25 Jul 2014 11:29:50 +0200 Message-ID: <53D2238E.2040505@web.de> References: <87oazlpu2x.fsf@gmail.com> <53D100A3.9020600@web.de> <87iomllsdg.fsf@nicolasgoaziou.fr> Reply-To: buddy.butterfly@web.de Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41693) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XAbp9-0005Kh-SA for emacs-orgmode@gnu.org; Fri, 25 Jul 2014 05:30:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XAbp2-0001KO-7z for emacs-orgmode@gnu.org; Fri, 25 Jul 2014 05:29:59 -0400 Received: from h1359005.stratoserver.net ([81.169.136.31]:43631) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XAbp2-0001JD-0G for emacs-orgmode@gnu.org; Fri, 25 Jul 2014 05:29:52 -0400 In-Reply-To: <87iomllsdg.fsf@nicolasgoaziou.fr> 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@gnu.org Hi, this is sooo cool! Was not aware of this syntax change. It works now as expected. Regarding "\__" syntax doesn't exist anymore, so no exporter will recognize it. The replacement is "\emsp". I fixed it in maint. Thank you for reporting it. How can I easily fix it in my Ubuntu dist? I am running the standard repo version from Ubuntu 14.04. Any .el or something like that? Just a small one. As now the line for the clocktable becomes longer, is there a method to break up the clocktable header into multiple lines? Thanks a lot man, you saved my docs ;-) Cheers, Matt Am 25.07.2014 um 11:06 schrieb Nicolas Goaziou: > Hello, > > Buddy Butterfly writes: > >> 1. Even though the column separators are given in latex, they are not >> printed >> anymore. Only when using the org-table standard feature |<>|. But such >> an additional line will be deleted after a clocktable refresh. > This is because syntax has changed. Attributes specific to the table > have to be inserted above the table, not above the dynamic block. What > you really want is (note the differences in "attr_latex" line) > > #+BEGIN: clocktable :maxlevel 7 :scope tree3 :indent t > #+ATTR_LATEX: :environment longtable :align l|r|r|r > | Headline | Time | | | > ... > #+END: > > Since the table is auto generated, you have to send this line through > the :header property: > > #+BEGIN: clocktable :maxlevel 7 :scope tree3 :indent t :header "#+attr_latex: :align l|r|r|r :environment longtable\n" > ... > #+END: > > Now you can also avoid using both "#+latex:" lines with appropriate > properties: > > #+BEGIN: clocktable :maxlevel 7 :scope tree3 :indent t :header "#+attr_latex: :align l|r|r|r :environment longtable :center t :font \\footnotesize\n" > ... > #+END: > > Eventually you can also insert a caption with, e.g., > > #+BEGIN: clocktable :maxlevel 7 :scope tree3 :indent t :header "#+attr_latex: :align l|r|r|r :environment longtable :center t :font \\footnotesize\n#+caption: Clock summary at {{{time(%c)}}}\n" > >> 2. The indentation underscores are printed, which did not come before. >> Especially >> this makes it ugly. Before the _ have not been exported. > "\__" syntax doesn't exist anymore, so no exporter will recognize it. > > The replacement is "\emsp". I fixed it in maint. Thank you for reporting > it. > > > Regards, >