How can I do this?

2008-05-29 Thread Nicolás

Hi!

I am writing a thesis and I need to include some articles verbatim, that is, with the format and style they where originally published. 
Using child documents requires files to have the same style. So how can I do, if it is possible, what I want to do?


Thanks

Nicolás


Re: How can I do this?

2008-05-29 Thread Paul A. Rubin

Nicolás wrote:

Hi!

I am writing a thesis and I need to include some articles verbatim, that 
is, with the format and style they where originally published. Using 
child documents requires files to have the same style. So how can I do, 
if it is possible, what I want to do?




If they are PDF files, and if you are producing PDF output of your 
thesis, you might try the pdfpages package, which will let you insert 
all or some pages from each article's PDF file directly into your output 
file.


/Paul



How can I do this?

2008-05-29 Thread Nicolás

Hi!

I am writing a thesis and I need to include some articles verbatim, that is, with the format and style they where originally published. 
Using child documents requires files to have the same style. So how can I do, if it is possible, what I want to do?


Thanks

Nicolás


Re: How can I do this?

2008-05-29 Thread Paul A. Rubin

Nicolás wrote:

Hi!

I am writing a thesis and I need to include some articles verbatim, that 
is, with the format and style they where originally published. Using 
child documents requires files to have the same style. So how can I do, 
if it is possible, what I want to do?




If they are PDF files, and if you are producing PDF output of your 
thesis, you might try the pdfpages package, which will let you insert 
all or some pages from each article's PDF file directly into your output 
file.


/Paul



How can I do this?

2008-05-29 Thread Nicolás

Hi!

I am writing a thesis and I need to include some articles verbatim, that is, with the format and style they where originally published. 
Using child documents requires files to have the same style. So how can I do, if it is possible, what I want to do?


Thanks

Nicolás


Re: How can I do this?

2008-05-29 Thread Paul A. Rubin

Nicolás wrote:

Hi!

I am writing a thesis and I need to include some articles verbatim, that 
is, with the format and style they where originally published. Using 
child documents requires files to have the same style. So how can I do, 
if it is possible, what I want to do?




If they are PDF files, and if you are producing PDF output of your 
thesis, you might try the pdfpages package, which will let you insert 
all or some pages from each article's PDF file directly into your output 
file.


/Paul



How can I do \begin{tabular}[b]{...}

2004-03-12 Thread Kostas Oikonomou
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?
Thanks,

	Kostas


Re: How can I do \begin{tabular}[b]{...}

2004-03-12 Thread Dekel Tsur
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.





How can I do \begin{tabular}[b]{...}

2004-03-12 Thread Kostas Oikonomou
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?
Thanks,

	Kostas


Re: How can I do \begin{tabular}[b]{...}

2004-03-12 Thread Dekel Tsur
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.





How can I do \begin{tabular}[b]{...}

2004-03-12 Thread Kostas Oikonomou
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?
Thanks,

	Kostas


Re: How can I do \begin{tabular}[b]{...}

2004-03-12 Thread Dekel Tsur
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.