From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: Scientific papers related to Org-mode Date: Tue, 10 Apr 2012 22:34:49 +0200 Message-ID: <87ehrvfhqu.fsf@gnu.org> References: <2012-04-09T20-39-13@devnull.Karl-Voit.at> <87aa2khgr2.fsf@gnu.org> <87obr0g6dt.fsf@gmx.com> <4F83E773.8060801@gmail.com> <4F83F913.3000304@gmail.com> <87d37g0x1c.fsf@altern.org> <4F83FC19.4000601@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:46000) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SHhkz-0001fR-1p for emacs-orgmode@gnu.org; Tue, 10 Apr 2012 16:33:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SHhkx-0004TF-25 for emacs-orgmode@gnu.org; Tue, 10 Apr 2012 16:33:40 -0400 Received: from mail-wi0-f169.google.com ([209.85.212.169]:38726) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SHhkw-0004SV-Pt for emacs-orgmode@gnu.org; Tue, 10 Apr 2012 16:33:38 -0400 Received: by wibhm17 with SMTP id hm17so3190748wib.0 for ; Tue, 10 Apr 2012 13:33:36 -0700 (PDT) In-Reply-To: <4F83FC19.4000601@gmail.com> (Rainer M. Krug's message of "Tue, 10 Apr 2012 11:23:37 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: R.M.Krug@gmail.com Cc: news1142@karl-voit.at, Bastien , emacs-orgmode@gnu.org Hi Rainer, Rainer M Krug writes: > It just returns the citation. Okay. I've added this to the Worg FAQ: * Is there a bibtex entry for the Org manual? Yes. Please evaluate this function and run =M-x org-insert-manual-bitex-citation-at-point RET=. #+begin_src emacs-lisp (defun org-insert-manual-bitex-citation-at-point () "Insert a Bibtex citation of the Org manual at point." (interactive) (insert "@book{dominik10:_org_mode_refer_manual, author = {Carsten Dominik}, title = {The \pkg{Org-Mode} 7 Reference Manual: Organize Your Life with GNU Emacs}, publisher = {Network Theory}, year = 2010, address = {UK}, note = {with contributions by David O`Toole, Bastien Guerry, Philip Rooke, Dan Davison, Eric Schulte, and Thomas Dye} }" (message "Thanks for quoting the Org manual!"))) #+end_src I don't think we need this in Org's core, but it's good to have it somewhere. Thanks! -- Bastien