sometime ago i wrote:

-------- Original Message --------
Subject: export to latex
Date: Tue, 02 May 2006 20:53:01 +0200
From: Edwin Leuven <[EMAIL PROTECTED]>
To: LyX Developers <lyx-devel@lists.lyx.org>

an old annoyance of mine is the following:

when exporting to latex, each cell of a table is on its own line.

with the attached each row is on its own line which i find much better.

opinions (flames)?

thanks, ed.
-------- Original Message --------



i'd like to put it in. objections?
Index: src/tabular.C
===================================================================
--- src/tabular.C       (revision 13787)
+++ src/tabular.C       (working copy)
@@ -2034,7 +2034,7 @@
 
                ret += TeXCellPostamble(os, cell);
                if (!isLastCellInRow(cell)) { // not last cell in row
-                       os << "&\n";
+                       os << " & ";
                        ++ret;
                }
                ++cell;

Reply via email to