From mboxrd@z Thu Jan 1 00:00:00 1970 From: Francesco Pizzolante Subject: Bug in LaTeX export of multiple footnote references Date: Fri, 20 Nov 2009 14:36:30 +0100 Message-ID: <87ocmxco81.fsf@missioncriticalit.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: 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-mXXj517/zsQ@public.gmane.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org-mXXj517/zsQ@public.gmane.org To: mailing-list-org-mode Hi, Exporting multiple references to the same footnote to LaTeX lead to a wrong generated code. The following example: --8<---------------cut here---------------start------------->8--- * Title This is my text[fn:1:This is my footnote.]. And another one[fn:1]. --8<---------------cut here---------------end--------------->8--- Will produce the following LaTeX code: --8<---------------cut here---------------start------------->8--- \section{Title} \label{sec-1} This is my text\footnote{This is my footnote. }. And another one\$$^{1}$\$. --8<---------------cut here---------------end--------------->8--- The correct code should be: --8<---------------cut here---------------start------------->8--- \section{Title} \label{sec-1} This is my text\footnote{This is my footnote. }. And another one$^{1}$. --8<---------------cut here---------------end--------------->8--- Regards, Francesco _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode-mXXj517/zsQ@public.gmane.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode