From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Re: Footnotes and R output when exporting to HTML or Latex Date: Wed, 21 Jan 2009 12:33:35 -0500 Message-ID: <7900.1232559215@alphaville.usa.hp.com> References: <2c75873c0901210739v77a6d347g8ab78d36ec0640a1@mail.gmail.com> <87tz7sbow5.fsf@gmail.com> <2c75873c0901210847p2857fd5fvffdcb2cb064e950f@mail.gmail.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LPgwu-0000t7-99 for emacs-orgmode@gnu.org; Wed, 21 Jan 2009 12:33:08 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LPgws-0000sS-LF for emacs-orgmode@gnu.org; Wed, 21 Jan 2009 12:33:07 -0500 Received: from [199.232.76.173] (port=39675 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LPgws-0000sK-GR for emacs-orgmode@gnu.org; Wed, 21 Jan 2009 12:33:06 -0500 Received: from g5t0007.atlanta.hp.com ([15.192.0.44]:42853) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LPgws-00074t-3k for emacs-orgmode@gnu.org; Wed, 21 Jan 2009 12:33:06 -0500 In-Reply-To: Message from Graham Smith of "Wed, 21 Jan 2009 16:47:02 GMT." <2c75873c0901210847p2857fd5fvffdcb2cb064e950f@mail.gmail.com> 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: Graham Smith Cc: Paul R , emacs-orgmode@gnu.org Graham Smith wrote: > > Check org-footnote-re and org-footnote-definition-re > > Thanks, but I would appreciate a bit more hand holding on this. > > I don't actually know how to "check" org-footnote-re and > org-footnote-definition-re > C-h v org-footnote-re or M-x describe-variable org-footnote-re These are the standard Emacs mechanisms for checking variables (the Help section of the Emacs manual describes these and other similar mechanisms, e.g. describing functions, keys, etc.) But I suspect that you are going to run into a much harder wall after you've done this. The description reads as follows: --------------------------------------------------------------------------- org-footnote-re is a variable defined in `/home/nick/src/emacs/org/git/org-mode/lisp/org-footnote.elc'. Its value is "[^][\n]\\[\\(?:\\([0-9]+\\)\\|\\(fn:\\([-_[:word:]]+?\\)?\\)\\(?::\\([^]]*?\\)\\)?\\)\\]" Documentation: Regular expression for matching footnotes. --------------------------------------------------------------------------- so you'll need a fair amount of grounding in regular expressions to even decipher this.