From mboxrd@z Thu Jan 1 00:00:00 1970 From: Suvayu Ali Subject: Re: inter-word space in org -> latex Date: Mon, 14 Sep 2015 18:54:32 +0200 Message-ID: <20150914165432.GE2932@chitra.no-ip.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51845) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbX1Z-0000hK-Mf for emacs-orgmode@gnu.org; Mon, 14 Sep 2015 12:54:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZbX1Y-00069w-OL for emacs-orgmode@gnu.org; Mon, 14 Sep 2015 12:54:37 -0400 Received: from mail-ig0-x22a.google.com ([2607:f8b0:4001:c05::22a]:33305) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbX1Y-00069s-CC for emacs-orgmode@gnu.org; Mon, 14 Sep 2015 12:54:36 -0400 Received: by igbkq10 with SMTP id kq10so94845771igb.0 for ; Mon, 14 Sep 2015 09:54:35 -0700 (PDT) Received: from chitra.no-ip.org ([2001:610:120:3001:2ad2:44ff:fe4a:b029]) by smtp.gmail.com with ESMTPSA id u4sm5716101igz.8.2015.09.14.09.54.34 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 14 Sep 2015 09:54:35 -0700 (PDT) Content-Disposition: inline In-Reply-To: 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 On Mon, Sep 14, 2015 at 10:42:25AM -0400, Dan Griswold wrote: > Dear org-mode community, > > In LaTeX, a space after a period is treated as an inter-sentence space, > which is wider than an inter-word space. This can lead to overly wide > spacing after a period that ends an abbreviation rather than a space. The > way to cover this in LaTeX is to use a backslash prior to the space, as in: > > Mr.\ Henry Higgins. > > I have some documents in org that have the same issue: periods concluding > abbreviations, with the result that LaTeX puts more space than I want after > the abbreviation. Yet the use of "\ " does not work, as the backslash is > exported to LaTeX as a literal backslash. > > How should I mark in org mode that I want a space following a period > concluding an abbreviation to be seen by LaTeX as an interword space? You can use entities. Maybe something like this: (setq org-entities-user ; can also use "\ " '(("space" "~" nil " " " " " " " "))) Then the following: Mr.\space{}Henry Higgins. exports as: Mr.~Henry Higgins. Hope this helps, -- Suvayu Open source is the future. It sets us free.