From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Harkins Subject: Italics + footnote in latex export Date: Sun, 2 Jun 2013 11:15:09 +0800 Message-ID: Reply-To: jamshark70@dewdrop-world.net Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49899) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UiylD-0005HD-4r for Emacs-orgmode@gnu.org; Sat, 01 Jun 2013 23:15:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UiylC-000396-9c for Emacs-orgmode@gnu.org; Sat, 01 Jun 2013 23:15:11 -0400 Received: from mail-ob0-x22a.google.com ([2607:f8b0:4003:c01::22a]:52288) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UiylC-000390-4D for Emacs-orgmode@gnu.org; Sat, 01 Jun 2013 23:15:10 -0400 Received: by mail-ob0-f170.google.com with SMTP id ef5so5403085obb.1 for ; Sat, 01 Jun 2013 20:15:09 -0700 (PDT) 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: "Emacs-orgmode@gnu.org" I have: Western notation supports a type of /polyphony/[fn:1] I get: Western notation supports a type of /polyphony/\footnote{ ... blah blah ... } Or, I can have: Western notation supports a type of /polyphony/ [fn:1] And then I get: \emph{polyphony} \footnote{ ... blah blah ... } And LaTeX puts a space between the word and the footnote number, which is poor typesetting. I also tried writing the \emph{} directly, but then org-export doesn't recognize the footnote tag: "\emph{polyphony}[fn:1]" appears in the .tex file. How do I keep the footnote text in the "* Footnotes" node and get proper typesetting in the main text? hjh