From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: GTD & LaTeX export Date: Mon, 10 Dec 2007 14:38:03 +0000 Message-ID: <87fxyasjhw.fsf@bzg.ath.cx> References: <20071209104253.09e3f8f4@gaura-nitai.dyndns.org> <3d6808890712100508j78df858ak6643b31e710626b8@mail.gmail.com> <3d6808890712100508x2162d684ua6c2c56ae59f7425@mail.gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J1ipr-0002PP-Ce for emacs-orgmode@gnu.org; Mon, 10 Dec 2007 08:38:15 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J1ipq-0002P9-TL for emacs-orgmode@gnu.org; Mon, 10 Dec 2007 08:38:15 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J1ipq-0002P6-PX for emacs-orgmode@gnu.org; Mon, 10 Dec 2007 08:38:14 -0500 Received: from mu-out-0910.google.com ([209.85.134.187]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1J1ipq-000504-9G for emacs-orgmode@gnu.org; Mon, 10 Dec 2007 08:38:14 -0500 Received: by mu-out-0910.google.com with SMTP id i2so3201521mue for ; Mon, 10 Dec 2007 05:38:13 -0800 (PST) In-Reply-To: <3d6808890712100508x2162d684ua6c2c56ae59f7425@mail.gmail.com> (Tim O'Callaghan's message of "Mon, 10 Dec 2007 14:08:44 +0100") 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 Cc: gour@atmarama.org, Christian Egli , tim.ocallaghan@gmail.com --=-=-= "Tim O'Callaghan" writes: > On 09/12/2007, Gour wrote: >> Hi! >> >> I'm moving from my old Palm Pilot to Hipster PDA (most probably with >> A7 format which is more convenient in Europe than 3x5" index cards), >> but would like to 'sync' some of the notes from it to Org-mode >> (especially computer-related tasks), but also to print from my >> org-mode file back to A7 forms arranged as 8-up on A4 page. >> >> Is anybody doing something similar, i.e. printing from org-mode files >> to 3x5"/A7/whatever paper? > > If you check the list, someone had a method of creating 8up > pocket-mod type output from Latex->pdf manipulation. I'm attaching the code from Christian Egli here again. I don't know if it is distributed somewhere : Christian, would you be okay to distribute it? If you don't have a web server at your disposal, I can put the code somewhere on my org-mode page, or maybe Carsten can put it on http://orgmode.org --=-=-= Content-Type: text/x-sh Content-Disposition: attachment; filename=org2pocketMob.sh # org2pocketMod - a small utility to generate pocketMod style printouts # from org mode Copyright (C) 2007 Christian Egli # # Version: 0.2 # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . EMACS = /usr/local/bin/emacs-23.0.0 -batch -l ~/.emacs.el LATEX = /usr/bin/latex hipsterFiles = weekCalendar.pdf \ yearCalendar.pdf \ monthCalendar3.pdf \ monthCalendar2.pdf \ monthCalendar1.pdf pocketModFiles = weekCalendar.pdf \ yearCalendar-rotated.pdf \ monthCalendar3-rotated.pdf \ monthCalendar2-rotated.pdf \ monthCalendar1-rotated.pdf all: pocketMod.pdf hipsterPDA.pdf # Quick hack to massage the LaTeX produced by cal-tex # quote '@', then increase font size of week calendars and # finaly increase font of diary entries in moth calendar %.dvi: %.tex sed -e 's/\\verb|@|/\@/g' \ -e 's/documentclass\[11pt\]/documentclass[12pt]/g' \ -e 's/{\\tiny \\raggedright #3}/{\\small \\raggedright #3}/g' \ < $< > /tmp/temp-org-file.$$$$; mv /tmp/temp-org-file.$$$$ $< $(LATEX) $^ %.pdf: %.dvi dvipdf $^ %-rotated.pdf: %.pdf cp $^ $@ for n in 1 2 3; do \ pdf90 --outfile tmp.pdf $@; mv tmp.pdf $@; \ done weekCalendar.tex: ~/.diary $(EMACS) -eval "(progn (calendar) (cal-tex-cursor-week-iso 4) (with-current-buffer cal-tex-buffer (write-file \"$@\")))" monthCalendar1.tex: ~/.diary $(EMACS) -eval "(progn (calendar) (cal-tex-cursor-month-landscape 1) (with-current-buffer cal-tex-buffer (write-file \"$@\")))" monthCalendar2.tex: ~/.diary $(EMACS) -eval "(progn (calendar) (calendar-forward-month 1) (cal-tex-cursor-month-landscape 1) (with-current-buffer cal-tex-buffer (write-file \"$@\")))" monthCalendar3.tex: ~/.diary $(EMACS) -eval "(progn (calendar) (calendar-forward-month 2) (cal-tex-cursor-month-landscape 1) (with-current-buffer cal-tex-buffer (write-file \"$@\")))" yearCalendar.tex: ~/.diary $(EMACS) -eval "(progn (calendar) (calendar-forward-month 2) (cal-tex-cursor-year-landscape 1) (with-current-buffer cal-tex-buffer (write-file \"$@\")))" pocketMod.pdf: $(pocketModFiles) pdfjoin --outfile tmp.pdf $^ pdfnup tmp.pdf --outfile $@ --nup 4x2 --frame true hipsterPDA.pdf: $(hipsterFiles) pdfnup weekCalendar.pdf --outfile page1.pdf --nup 2x2 --frame true pdfjoin --outfile tmp.pdf monthCalendar[1-3]-rotated.pdf yearCalendar-rotated.pdf pdfnup tmp.pdf --outfile page2.pdf --nup 2x2 --frame true pdfjoin --outfile $@ page1.pdf page2.pdf clean: rm -rf *.aux *.dvi *.tex *.log *.pdf --=-=-= -- Bastien --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --=-=-=--