From mboxrd@z Thu Jan 1 00:00:00 1970 From: Martin Pohlack Subject: Re: Org-mode for diary writing Date: Wed, 18 Nov 2009 11:09:14 +0100 Message-ID: <4B03C7CA.6090906@os.inf.tu-dresden.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NAhTZ-0001Up-Ew for emacs-orgmode@gnu.org; Wed, 18 Nov 2009 05:09:25 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NAhTU-0001RV-3O for emacs-orgmode@gnu.org; Wed, 18 Nov 2009 05:09:24 -0500 Received: from [199.232.76.173] (port=51130 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NAhTT-0001RM-Jr for emacs-orgmode@gnu.org; Wed, 18 Nov 2009 05:09:19 -0500 Received: from os.inf.tu-dresden.de ([141.76.48.99]:48598) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NAhTT-0008Ba-0t for emacs-orgmode@gnu.org; Wed, 18 Nov 2009 05:09:19 -0500 In-Reply-To: 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: T o n g , emacs-orgmode@gnu.org Hi T o n g, T o n g wrote: > I found people are using org-mode for diary writing in recent mlist > archive, but wasn't able to find such tutorials. > > Anyone can enlighten me with such tutorial, which is for org-mode newbies > and focusing on how to make most use of applicable org-mode features, and > maybe a bonus "best-practice diary writing with org-mode"? No tutorial, but this is how I write my journal: (custom-set-variables '(org-remember-templates (quote (("Journal" 106 "* %^{Eintrag}%?%i%&" "~/Daten/Journal.org" return_formated_date nil))))) With this helper function: ;;; ;;; time and date, date in international format: YYYY-MM-DD ;;; (defun return_formated_date () (let ((time (decode-time))) (format "%d-%02d-%02d" (nth 5 time) (nth 4 time) (nth 3 time)))) My journal looks like this: ... * 2009-11-13 *** abc *** def ... Cheers, Martin