From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Lawrence Subject: Re: math in parentheses Date: Tue, 28 Oct 2014 08:50:03 -0700 Message-ID: <87ppdcdwic.fsf@berkeley.edu> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50252) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xj93R-00083F-Iz for emacs-orgmode@gnu.org; Tue, 28 Oct 2014 11:51:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xj93L-0008DH-GR for emacs-orgmode@gnu.org; Tue, 28 Oct 2014 11:51:29 -0400 Received: from plane.gmane.org ([80.91.229.3]:37424) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xj93L-0008D9-A3 for emacs-orgmode@gnu.org; Tue, 28 Oct 2014 11:51:23 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Xj93H-0003Yc-Uf for emacs-orgmode@gnu.org; Tue, 28 Oct 2014 16:51:19 +0100 Received: from c-67-169-117-151.hsd1.ca.comcast.net ([67.169.117.151]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 28 Oct 2014 16:51:19 +0100 Received: from richard.lawrence by c-67-169-117-151.hsd1.ca.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 28 Oct 2014 16:51:19 +0100 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 Hi Andreas, Andreas Leha writes: > I encounter a problem using $..$ expressions when they are enclosed > in parentheses. > This $T$ works, but ($T$) this does not. > > Is that expected behaviour? > > (Note that \(...\) expressions work.) Yes, that is the expected behavior. Org is much pickier about when "$" can be a math delimiter than "\( ... \)". The reason is that "$" can also be used as a regular symbol in Org documents; when it is, it should be *not* be exported as a math delimiter to LaTeX, and distinguishing non-math-delimiting from math-delimiting uses of "$" is not a trivial matter. Thus, when in doubt, use "\( ... \)". Best, Richard