[Orgmode] GTD LaTeX export

2007-12-10 Thread Gour
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?

Any hint is welcome...


Sincerely,
Gour


signature.asc
Description: PGP signature
___
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


Re: [Orgmode] Re: Blank lines in literal html

2007-12-10 Thread Bastien
Wanrong Lin [EMAIL PROTECTED] writes:

 Sorry, actually we were talking about different things. Maybe because we
 have different understandings of the bug itself. Just want to clarify
 the bug a little bit.

 Actually, the bug is *NOT* concerned about how the HTML code looks, it
 is concerned about how the HTML page look. If I put a segment of HTML
 code in an org file that should display only one blank line, but the
 exported page displays 3 blank lines in a browser, that page has
 correct syntax but wrong content (although the rendering is still
 correct). Because the exported part is bracket in a pre ... /pre
 section, a changed number of blank lines in the HTML code also changes
 the number of displayed blank lines in the browser.

Yes, you're perfectly right.  I've submitted your patch to Carsten, I
think he will take it (or a modified version.)  Thanks again for your
report/fix!

-- 
Bastien


___
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


Re: [Orgmode] GTD LaTeX export

2007-12-10 Thread Bastien
Tim O'Callaghan [EMAIL PROTECTED] writes:

 On 09/12/2007, Gour [EMAIL PROTECTED] 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

# 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 http://www.gnu.org/licenses/.

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 \[EMAIL PROTECTED])))

monthCalendar1.tex: ~/.diary
	 $(EMACS) -eval (progn (calendar) (cal-tex-cursor-month-landscape 1) (with-current-buffer cal-tex-buffer (write-file \[EMAIL PROTECTED])))

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 \[EMAIL PROTECTED])))

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 \[EMAIL PROTECTED])))

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 \[EMAIL PROTECTED])))

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
___
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


[Orgmode] Re: Agenda for all deadline TODOs sorted by deadline date

2007-12-10 Thread Alex Rudyk

Thx for help


Bastien [EMAIL PROTECTED] wrote in message 
news:[EMAIL PROTECTED]

Alex Rudyk [EMAIL PROTECTED] writes:


How to create custome agenda command that displays all todo items
that have deadline date and sorted by deadline date where the most close
date on the top of list.


Maybe this:

(org-add-agenda-custom-command
'(x todo *
  ((org-agenda-skip-function
'(org-agenda-skip-entry-if 'notdeadline))
   (org-agenda-sorting-strategy '(time-up)

HTH,

--
Bastien


___
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






___
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


Re: [Orgmode] Re: GTD LaTeX export

2007-12-10 Thread Bastien
francois [EMAIL PROTECTED] writes:

 Bastien bzg at altern.org writes:

 I'm attaching the code from Christian Egli here again.  
 Attachment (org2pocketMob.sh): text/x-sh, 3047 bytes

 But inputs are based from the diary file, and I use org.. how to tell
 that the diary input has to be produced by org.

To get the diary entries included in Org agendas:

  (setq org-agenda-include-diary t)

See (info (org)Weekly/Daily agenda) for details.

To get the org agenda entries included in the diary:

  %%(org-diary :scheduled :deadline :timestamp)

HTH,

-- 
Bastien


___
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


[Orgmode] New variable request: org-archive-todo-only

2007-12-10 Thread Wanrong Lin


Hi,

In my org file I have a mix of actionable items (TODO items) and 
informative items (notes, references and etc). Normally I only archive 
TODO items when they are done, and don't archive informative items 
(since most of them have some long-term value). So, can we add a new 
variable to org-archive-todo-only to control the behavior of following 
functions:


1. org-archive-subtree
1) when org-archive-todo-only is nil, behave as it does now, with a 
little bit modification:
  - if the current heading is a TODO item and 
org-archive-mark-done is nil, check whether it is in a DONE state. If 
not, prompt for user confirmation.
2) when org-archive-todo-only is t, if the current heading is a 
TODO item, behaves the same as 1). if the current heading is NOT a TODO 
item, prompt for user confirmation.


2. org-archive-all-done
1) when org-archive-todo-only is nil, behaves as it does now
2) when org-archive-todo-only is t, only checks the headings that 
are a TODO item.


Without the change to those functions, I have to be very careful not 
archiving something I don't want to.


I put in an advice by myself to change the org-archive-subtree behavior 
as above, but I can not do it with function org-archive-all-done. And I 
also think this may be an improvement that makes sense for many people, 
hence the proposal/request.


Thanks a lot for comments and consideration of the above.

Wanrong





___
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


[Orgmode] Re: Manage and display personal milestones

2007-12-10 Thread Alex Rudyk

Hi Bastien,

I have milestone as part of my org-todo-keywords sequence variable.

My org system is more close to Stephen Covey 3rd habit approach, so I am 
using week planning,
week and master goals setting. And now I am tring to create some mechanism 
that give me highlevel
view of my life planning. So I have created a roadmap.org file where I wrote 
my one-three months plan of my life.


In this file I have MILESTONE headlines as major events of my plans for 
different focus area. What I like to have

is the list of neareset milestones sorted by date. For example

Managemnt:MILESTONE: Bla bla bla bla
  Deadline: 12/23/07
Study: MILESTONE: Bla bla bla bla
 Deadline: 12/31/07
Study: MILESTONE: la la la la :)
 Deadline: 01/10/08


Now I am thinking that your idea to use tags for marking milestone is more 
convinient.

But using properties for this might be a more complecated that tags.

So the main questions is how to get agenda list similar above (with tags 
approach to mark milestone headlines) ???


Thx



Bastien [EMAIL PROTECTED] wrote in message 
news:[EMAIL PROTECTED]

Hi Alex,

Alex Rudyk [EMAIL PROTECTED] writes:


I am tiring to use milestones in my orgmode system. This is the major
events in my personal activities workflow, similar to software projects
milestones.

I added MILESTONE into org-todo-keywords variable and it works great.
Also I am using deadlines to schedule milestone date. The main problem
is how to display millstones in agenda buffer sorted by deadline and
display deadline date near milestone text.


I'm not sure to understand how you use the keyword MILESTONE.  Can you
be a bit more specific, maybe give an example of your Org file and the
expected agenda view?

I can think of three ways of implementing something like milestones:
TODO keywords, tags and properties.  Did you already try to use tags
and/or properties?

For me, a milestone would be an ordinary task with an additionnal bit of
information, and I would put this piece of information in a property.
For example:

,
| * TODO Release 1.2
|   DEADLINE: 2007-12-15 sam
|   :PROPERTIES:
|   :Milestone: Unicorn
|   :END:
|
| * TODO Fix bug #322
`


Also its interesting is anybody using milestones or similar concept
with orgmode, if yes how you implement them, and what is your workflow
to manage them?


I would also be interested in this.   Did you make any progress on this
since you last posted your question?

--
Bastien


___
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






___
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


[Orgmode] Feature request - add a new heading with a lower level than current

2007-12-10 Thread Charles Cave
org-mode has the feature of entering M-RET to insert a heding with the same
level as current.

I would like a command to enter a new headline at a level BELOW the current
headline.  The command key binding could be a modificaton to M-RET maybe adding
the ctl or shift key.

The reason for this functionality is when using org-mode for brainstorming.
I want to quickly add more than one child heading to the current heading.
Adding the first child heading is slower because I have to do a M-RET
backspace backspace  asterisk (*) space the continue.  The next headline
is added with a M-RET.

Mindmapping programs call this a Rapid Fire brainstorming.   

If someone coud suggest how to modify the org-el code to do so this would be
great. I found references to overriding the self-insert-command function but 
couldn
find how M-Ret is implemented.

Thanks
Charles






___
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


Re: [Orgmode] Feature request - add a new heading with a lower level than current

2007-12-10 Thread William Henney
Hi Charles

On Dec 10, 2007 4:03 PM, Charles Cave [EMAIL PROTECTED] wrote:
 I would like a command to enter a new headline at a level BELOW the current
 headline.  The command key binding could be a modificaton to M-RET maybe 
 adding
 the ctl or shift key.

 The reason for this functionality is when using org-mode for brainstorming.
 I want to quickly add more than one child heading to the current heading.
 Adding the first child heading is slower because I have to do a M-RET
 backspace backspace  asterisk (*) space the continue.

Or you could just do M-return M-right - is that really too slow for you?

Cheers

Will



-- 

  Dr William Henney, Centro de Radioastronomía y Astrofísica,
  Universidad Nacional Autónoma de México, Campus Morelia


___
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


Re: [Orgmode] Feature request - add a new heading with a lower level than current

2007-12-10 Thread Adam Spiers
On Tue, Dec 11, 2007 at 09:03:15AM +1100, Charles Cave wrote:
 org-mode has the feature of entering M-RET to insert a heding with the same
 level as current.
 
 I would like a command to enter a new headline at a level BELOW the current
 headline.  The command key binding could be a modificaton to M-RET maybe 
 adding
 the ctl or shift key.
 
 The reason for this functionality is when using org-mode for brainstorming.
 I want to quickly add more than one child heading to the current heading.
 Adding the first child heading is slower because I have to do a M-RET
 backspace backspace  asterisk (*) space the continue.  The next headline
 is added with a M-RET.
 
 Mindmapping programs call this a Rapid Fire brainstorming.   
 
 If someone coud suggest how to modify the org-el code to do so this would be
 great. I found references to overriding the self-insert-command function but 
 couldn
 find how M-Ret is implemented.

Hi Charles,

I suggested this a few months ago:

  http://thread.gmane.org/gmane.emacs.orgmode/2420/focus=2653

and Carsten kindly included a simplified version in the distribution:

  http://thread.gmane.org/gmane.emacs.orgmode/2420/focus=2653

Therefore you only need to bind keys to org-insert-subheading and
org-insert-todo-subheading to take advantage of the code.

M-RET is a useful binding to keep, so I personally bind M-j and M-J
for org-insert-subheading and org-insert-todo-subheading respectively
(actually I use my more complicated versions, but the suggestion still
applies).

HTH,
Adam


___
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


Re: [Orgmode] Feature request - add a new heading with a lower level than current

2007-12-10 Thread Nick Dokos
Charles Cave [EMAIL PROTECTED] wrote:

 The reason for this functionality is when using org-mode for brainstorming.
 I want to quickly add more than one child heading to the current heading.
 Adding the first child heading is slower because I have to do a M-RET
 backspace backspace  asterisk (*) space the continue.  The next headline
 is added with a M-RET.
 

You don't need to do that: M-RET M-right does what you want, I think, and
it's both easy to type and mnemonically appropriate.

Nick



___
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


Re: [Orgmode] FR: make C-c C-c for storing remember notes optional

2007-12-10 Thread Adam Spiers
On Mon, Dec 10, 2007 at 03:22:07PM +, Bastien wrote:
 Hi Adam,
 
 Adam Spiers [EMAIL PROTECTED] writes:
 
  Simple feature request:
 
  Could we make it optional whether C-c C-c is required to store a note,
  on a per-template basis?  This makes most sense when it is known in
  advance that the only things which might need to be changed within the
  template are already taken care of via %^{foo} prompts.  So when all
  the prompts have been entered, the final enter keystroke will store
  the note immediately, rather than the user having to type enter C-c
  C-c.
 
 I'm not sure about this.  
 
 1) It's convenient to be able to double-check the content of the
*Remember* buffer before remembering it with `C-c C-c'.

It can be yes, but I think it's really a matter of personal taste
applied on a per-template basis.  Personally I would rather minimise
keystrokes to enable rapid-fire conversion of mails into TODOs in the
most effortless manner possible, since if I screw up, I can still
easily go to the destination file and fix the new TODO there.

 2) What if there are several %^{prompt} and the user finally decided
*not* to remember it?  If the buffer is remembered at the final 
RET, then she won't be able to cancel the note with `C-c C-k'.

C-g before the final RET, or switch to the destination file's buffer
and do an undo?

 3) `C-c C-c' is really a call to a remember functionnality, not to an
org ones.  I guess it's not good practice to override the expected
*general* remember behavior...

I'm certainly not suggesting making it the default - only to make it
possible to enable this behaviour for selected remember templates.
But since I get SO many emails every day, I really need to be able to
apply the 2-minute rule of GTD: if the mail requires  2 minutes of
attention, I need to be able to convert it into a TODO (linking by
message id via the org-mairix stuff) and archive it safely in the
_absolute_minimum_ number of keystrokes.  Otherwise I am constantly in
the processing phase of the workflow and never get to the planning
and doing phases - then the whole system fails miserably :-)


___
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


Re: [Orgmode] [ feature request ] colourful timestamps

2007-12-10 Thread Phil Jackson
Bastien,

Bastien [EMAIL PROTECTED] writes:

 Phil Jackson [EMAIL PROTECTED] writes:

 Something I thought might be nice is highlighting of timestamps
 according to there relativity to time().

[...]

 I like the general idea of having feedback about the proximity of a
 deadline or time-stamp.  But I think doing this interactively is better,
 since the values like 2h 10m (in your example) are very likely to
 change quite often, no?

I can't see why it would change, I would expect the map to remain
largely static. Only the colours of the links would change. The idea is
that one would become used to scanning the colours and be able to 'sort'
tasks visually. Am I making any sense?

 In the same spirit, I've written this, which let you check for deadlines
 or scheduled items before a date (strings like +2d are okay):

That's brilliant, thanks for the effort. I'm putting this into my config
straight away. Is there a chance of your patch making trunk?

Cheers,
Phil


___
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


Re: Re: [Orgmode] Feature request - add a new heading with a lower level than current

2007-12-10 Thread Charles Cave
 Will

 Or you could just do M-return M-right - is that really too slow for 
 you?

Thank you!  I hadn't thought of that.   Entering M-right is
easy because I am already holding the Meta key with my thumb
so it is just a matter of continuing to hold the thumb and hitting
the right arrow key.

Charles


___
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


[Orgmode] Re: GTD LaTeX export

2007-12-10 Thread Christian Egli
Bastien [EMAIL PROTECTED] writes:

 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?

I would love to distribute it, that's the whole point.

 If you don't have a web server at your disposal,

I don't really.

 I can put the code somewhere on my org-mode page, or maybe Carsten can
 put it on http://orgmode.org

It would be great if Carsten could host it. I don't want to impose any
burden on him if I need to upload a new version.

Here's an updated version which includes a few comments and feedback
from the list.

# org2pocketMod - a small utility to generate pocketMod style printouts from org mode 
# Copyright (C) 2007  Christian Egli
# 
# Version: 0.3
#
# 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 http://www.gnu.org/licenses/.
#
# Commentary:
# 
# set cal-tex-diary to true so that diary entries show up in the calendar 
#
# the pdf* commands are part of the pdfjam package which can be found
# at http://www.warwick.ac.uk/go/pdfjam

EMACS = emacs -batch -l ~/.emacs
LATEX = 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

%.dvi: %.tex
	# 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
	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 \[EMAIL PROTECTED])))

monthCalendar1.tex: ~/diary
	 $(EMACS) -eval (progn (calendar) (cal-tex-cursor-month-landscape 1) (with-current-buffer cal-tex-buffer (write-file \[EMAIL PROTECTED])))

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 \[EMAIL PROTECTED])))

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 \[EMAIL PROTECTED])))

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 \[EMAIL PROTECTED])))

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


HTH
Christian
___
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


[Orgmode] Re: Feature Request - Active and inactive links.

2007-12-10 Thread Christian Egli
Tim O'Callaghan [EMAIL PROTECTED] writes:

 I have a hacked together function that i use (see my rusty elisp
 below) that creates org-files from ical URLs. I use this to
 include my google calendar and other published events in my
 agenda.

Could you not achieve something along your desired lines with using
includes in your diary file? The info on Fancy Diary Display has some
information on how to include additional diary files.

Christian



___
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


Re: [Orgmode] Re: GTD LaTeX export

2007-12-10 Thread Bastien
Christian Egli [EMAIL PROTECTED] writes:

 It would be great if Carsten could host it. I don't want to impose any
 burden on him if I need to upload a new version.

I've put v0.3 there for now:

  http://www.cognition.ens.fr/~guerry/bastien-org-mode.html

(I'll rewrite this page sooner or later...)

Thanks,

-- 
Bastien


___
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