From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: bibtex fields in remember templates Date: Tue, 06 Nov 2007 00:06:24 +0000 Message-ID: <878x5cnsov.fsf@bzg.ath.cx> References: <0F3DD24A-86E2-4452-B84F-1631E2E4AEB1@science.uva.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IpB1g-0008Ry-Eo for emacs-orgmode@gnu.org; Mon, 05 Nov 2007 18:06:36 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IpB1e-0008RP-SC for emacs-orgmode@gnu.org; Mon, 05 Nov 2007 18:06:36 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IpB1e-0008RG-LP for emacs-orgmode@gnu.org; Mon, 05 Nov 2007 18:06:34 -0500 Received: from nf-out-0910.google.com ([64.233.182.186]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IpB1e-0007gs-4j for emacs-orgmode@gnu.org; Mon, 05 Nov 2007 18:06:34 -0500 Received: by nf-out-0910.google.com with SMTP id f5so1760660nfh for ; Mon, 05 Nov 2007 15:06:32 -0800 (PST) In-Reply-To: <0F3DD24A-86E2-4452-B84F-1631E2E4AEB1@science.uva.nl> (Carsten Dominik's message of "Sun, 4 Nov 2007 14:49:12 +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 Carsten Dominik writes: >> "* TO_READ%?\n %a\n %:author (%:year). %:title. %:journal: %:pages." >> >> I know that links to bibtex entries are created using the custom >> search mechanism, but I can't figure out how to expose properties of >> the bibtex entry to remember or org-remember. > > This is, I think, hard using the current mechanism. I believe it > would be much better to create a new link type for BibTeX, now that > this is possible. The it would also be easy to set a lot of info that > can be accessed by templates..... Please check org-bibtex.el here: http://www.cognition.ens.fr/~guerry/u/org-bibtex.el This package does not affect the way BibTeX entries are stored and inserted but it provides more information on them thru properties. Typically, you'll use this information in *remember* templates. So for example: (setq org-remember-templates '((?b "* READ %?\n\n%a\n %:author (%:year): %:title In %:journal, %:pages."))) will insert to relevant information about the author, the year, etc. -- Bastien