From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Hofert Subject: Re: How to escape spaces after full stops? Date: Sun, 24 Jun 2012 13:37:32 +0200 Message-ID: <87395ley9v.fsf@math.ethz.ch> References: <87hau1n90d.fsf@math.ethz.ch> <87sjdlm45y.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:51949) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sil8L-0003GH-CL for emacs-orgmode@gnu.org; Sun, 24 Jun 2012 07:37:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sil8J-0000pS-Jo for emacs-orgmode@gnu.org; Sun, 24 Jun 2012 07:37:36 -0400 Received: from edge20.ethz.ch ([82.130.99.26]:46537) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sil8J-0000pF-DK for emacs-orgmode@gnu.org; Sun, 24 Jun 2012 07:37:35 -0400 In-Reply-To: <87sjdlm45y.fsf@gmail.com> (Nicolas Goaziou's message of "Sun, 24 Jun 2012 11:48:25 +0200") 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: Nicolas Goaziou Cc: emacs-orgmode@gnu.org Dear Nicolas, many thanks for pointing this out. \nbsp{} leads to ~, which is correct in this case. Is there also a way to get "\"? [there is a slight but sometimes important difference]. Cheers, Marius Nicolas Goaziou writes: > Hello, > > Marius Hofert writes: > >> If I create a .org file containing this line... >> >> ,----[ minimal_example.org ] >> | This is just some text on p. 17. Some more text. >> `---- >> >> ... and then export it to pdf via C-c C-e p, you can see from the output that >> the space after "p." is too large. In a standard .tex file one would escape the >> space via "p.\ 17". But this leads to a backslash in the .pdf (when >> exported). How can this space be escaped? > > You can use Org entities, i.e.: > > This is just some text on p.\nbsp{}17. Some more text. > > > Regards,