Re: [O] inter-word space in org -> latex

2015-09-22 Thread Marcin Borkowski
On 2015-09-22, at 22:17, Marcin Borkowski wrote: > On 2015-09-14, at 16:42, Dan Griswold wrote: > >> 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? > >

Re: [O] inter-word space in org -> latex

2015-09-22 Thread Rasmus
Marcin Borkowski writes: > ;; Convert single spaces after periods etc. to "\ " when exporting to LaTeX > > (defun my-latex-filter-nonfrenchspacing (text backend info) > "Convert single spaces after dots to \"\ \"." > (when (and (org-export-derived-backend-p backend 'latex) >

Re: [O] inter-word space in org -> latex

2015-09-22 Thread Marcin Borkowski
On 2015-09-14, at 16:42, 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

Re: [O] inter-word space in org -> latex

2015-09-16 Thread Dan Griswold
On Mon, Sep 14, 2015 at 12:54 PM, Suvayu Ali wrote: > You can use entities. Maybe something like this: > > (setq org-entities-user ; can also use "\ " > '(("space" "~" nil "" " " " " " "))) > > Then the following: > > Mr.\space{}Henry Higgins. > That's

Re: [O] inter-word space in org -> latex

2015-09-16 Thread Dan Griswold
On Mon, Sep 14, 2015 at 12:50 PM, Rasmus wrote: > > 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? > > .@@latex:\ @@ Pretty neat. Thanks.

[O] inter-word space in org -> latex

2015-09-14 Thread Dan Griswold
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

Re: [O] inter-word space in org -> latex

2015-09-14 Thread Suvayu Ali
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

Re: [O] inter-word space in org -> latex

2015-09-14 Thread Rasmus
Hi Dan, Dan Griswold writes: > 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.