From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: org-mode -> diary -> latex calendar Date: Tue, 29 Mar 2011 16:15:02 -0400 Message-ID: <87ei5pr8e1.fsf@fastmail.fm> References: <871v1pzwca.fsf@gmail.com> <87k4fh3ind.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=45690 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q4fJk-0005zB-CY for emacs-orgmode@gnu.org; Tue, 29 Mar 2011 16:15:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q4fJi-0000kF-IU for emacs-orgmode@gnu.org; Tue, 29 Mar 2011 16:15:08 -0400 Received: from out3.smtp.messagingengine.com ([66.111.4.27]:50724) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q4fJi-0000k3-Fc for emacs-orgmode@gnu.org; Tue, 29 Mar 2011 16:15:06 -0400 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: Bastien Cc: Fred Concklin , emacs-orgmode@gnu.org Bastien writes: > Fred Concklin writes: > >> I was wondering if I can take an org file and turn it into one of those >> snazzy tex calendars like I can with a diary file? > > Yes, but not directly. You can use the `org-diary' function to include > Org's appointments into your ~/.diary then export the diary. I use this method and it works very well. Another tip: the resulting calendar looks better if you advise org-diary to use a custom agenda prefix format: --8<---------------cut here---------------start------------->8--- (defadvice org-diary (around my-org-diary activate) (let ((org-agenda-prefix-format "%t %s ")) ad-do-it)) --8<---------------cut here---------------end--------------->8--- Best, Matt