On Fri, Mar 12, 2004 at 07:19:54PM -0500, Kostas Oikonomou wrote: > > Hi, I'm using LyX 1.3.3. > Is there a way to do \begin{tabular}[b]{...}? The problem is how to "pass" > the [b] to the tabular layout. Is it possible to do this without writing > the whole table > as an ERT?
If you want all your tables to be \begin{tabular}[b], then put the following in the preamble: \let\oldtabular=\tabular \renewcommand{\tabular}{\oldtabular[b]} If you want it for only one table, put {\let\oldtabular=\tabular \renewcommand{\tabular}{\oldtabular[b]} before the table, and } after the table.