Re: [O] [PATCH] org-e-latex: Tables get correct amount of vertical space

2012-11-14 Thread Nicolas Goaziou
Hello, Myles English writes: > Nick, I think you are right about this, the modified patch at the end of > this email makes only the replacements that are necessary just to > replace the center environment within table blocks. > > The other \begin{center}'s in the org-e-latex.el file may be chang

Re: [O] [PATCH] org-e-latex: Tables get correct amount of vertical space

2012-11-14 Thread Myles English
Sebastien Vauban writes: > Hi Nick, > > Nick Dokos wrote: >> Nick Dokos wrote: >>> >>> I think I read the whole thread but I'm still not clear on why >>> the change is needed. What goes awry with the environment instead >>> of the declaration? >> >> Never mind - I didn't read the whole thread.

Re: [O] [PATCH] org-e-latex: Tables get correct amount of vertical space

2012-11-14 Thread Sebastien Vauban
Hi Nick, Nick Dokos wrote: > Nick Dokos wrote: >> >> I think I read the whole thread but I'm still not clear on why >> the change is needed. What goes awry with the environment instead >> of the declaration? > > Never mind - I didn't read the whole thread. To summarize: - \begin{center}...\end

Re: [O] [PATCH] org-e-latex: Tables get correct amount of vertical space

2012-11-13 Thread Myles English
Sebastien Vauban writes: > Hi Myles and Nick, > > Nick Dokos wrote: >> Myles English wrote: >>> Sebastien Vauban writes: >>> > Myles English wrote: >>> >> This patch replaces every occurence of the \begin{center} environment >>> >> with \centering in the file contrib/lisp/org-e-latex.el. >>> >>

Re: [O] [PATCH] org-e-latex: Tables get correct amount of vertical space

2012-11-13 Thread Nick Dokos
Nick Dokos wrote: > > I think I read the whole thread but I'm still not clear on why > the change is needed. What goes awry with the environment instead > of the declaration? > Never mind - I didn't read the whole thread. Nick

Re: [O] [PATCH] org-e-latex: Tables get correct amount of vertical space

2012-11-13 Thread Nick Dokos
Sebastien Vauban wrote: > I think that's a safe replacement (_with_ the grouping), and with something I > forgot about (well seen Nick!): the \par. > > See, for example, > https://groups.google.com/forum/?fromgroups=#!topic/fr.comp.text.tex/0s4WfsIfmy8 > for the answer of Manuel Pégourié-Gonnard

Re: [O] [PATCH] org-e-latex: Tables get correct amount of vertical space

2012-11-13 Thread Sebastien Vauban
Hi Myles and Nick, Nick Dokos wrote: > Myles English wrote: >> Sebastien Vauban writes: >> > Myles English wrote: >> >> This patch replaces every occurence of the \begin{center} environment >> >> with \centering in the file contrib/lisp/org-e-latex.el. >> >> ... >> >> - (format "\\begin{center}

Re: [O] [PATCH] org-e-latex: Tables get correct amount of vertical space

2012-11-13 Thread Nick Dokos
Myles English wrote: > > Hi Seb, > > Sebastien Vauban writes: > > > Hi Myles, > > > > Myles English wrote: > >> This patch replaces every occurence of the \begin{center} environment > >> with \centering in the file contrib/lisp/org-e-latex.el. > >> ... > >> - (format "\\begin{center}\n%s\\en

Re: [O] [PATCH] org-e-latex: Tables get correct amount of vertical space

2012-11-13 Thread Myles English
Hi Seb, Sebastien Vauban writes: > Hi Myles, > > Myles English wrote: >> This patch replaces every occurence of the \begin{center} environment >> with \centering in the file contrib/lisp/org-e-latex.el. >> ... >> - (format "\\begin{center}\n%s\\end{center}" contents))) >> + (format "\\center

Re: [O] [PATCH] org-e-latex: Tables get correct amount of vertical space

2012-11-13 Thread Sebastien Vauban
Hi Myles, Myles English wrote: > This patch replaces every occurence of the \begin{center} environment > with \centering in the file contrib/lisp/org-e-latex.el. > ... > - (format "\\begin{center}\n%s\\end{center}" contents))) > + (format "\\centering\n%s" contents))) Wouldn't you have to rep