From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Hendy Subject: Org interpreting multiple ^{*} instances as bold in LaTeX beamer export Date: Tue, 12 Feb 2013 02:44:14 -0600 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([208.118.235.92]:47611) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U5BaY-0002w6-16 for emacs-orgmode@gnu.org; Tue, 12 Feb 2013 03:51:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U5BaV-0001a6-Rc for emacs-orgmode@gnu.org; Tue, 12 Feb 2013 03:51:41 -0500 Received: from mail-lb0-f176.google.com ([209.85.217.176]:33172) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U5BaV-0001Zp-KD for emacs-orgmode@gnu.org; Tue, 12 Feb 2013 03:51:39 -0500 Received: by mail-lb0-f176.google.com with SMTP id s4so5179319lbc.7 for ; Tue, 12 Feb 2013 00:51:37 -0800 (PST) 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 Here's a minimal example: #+begin_src org #+startup: beamer #+latex_class: beamer #+options: tex:t * A headline a word^{*} followed by another^{*} - bullet item^{*} - bullet item^{*} - bullet item - bullet item #+end_src I just wanted an asterisk to put a little footnote for two items in a longer list and noticed that it shifted the whole slide up. Same for regular LaTeX document export. Seems like it only happens if the two bullets are consecutive. In other words, this works fine: #+begin_src org a word^{*} followed by another and let's see how far apart they need to be before this isn't triggered anymore by org interpreting LaTeX math as bold markup and inserting textbf commands in the export^{*}. Ah, yes. That does it. - bullet item^{*} - bullet item - bullet item^{*} #+end_src I also tried explicitly forcing math mode, but with varied success: #+begin_src org appears to work: a word\(^{*}\) followed by another\(^{*}\) still doesn't work (asterisks are there, but org doesn't put it in as an =\item=, taking the "-" bullet markup literally - bullet item\(^{*}\) - bullet item\(^{*}\) - bullet item - bullet item #+end_src This is on the old exporter (not sure if org has actually moved to this or not yet... but either way, I've still just been doing things "the old way" as I haven't really dug into the new one yet). Best regards, John