LyX ⇒ need a A3 Paper in a A4 book
need a A3 Paper in a A4 book
i need to include some A3 paper into my A4 book. (big pictures) But i have no clue how to do it. Do you have an idea ?
Best wishes
Herwig
btw.: I am using LYX 1.5.1
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
need a A3 Paper in a A4 book
need a A3 Paper in a A4 book
I just wrote this solution - it needs memoir!
Code: Select all
\newenvironment{ChangeToA3Paper}{%
\newlength\oldtextwidth
\oldtextwidth=\the\textwidth
\newpage
\pageaiii % Change page to A3: 297mm x 420mm
\setlength{\pdfpagewidth}{\paperwidth} % Change the pdf page
\setlength{\pdfpageheight}{\paperheight} % Change the pdf height
\setlength{\textwidth}{\the\paperwidth-\the\spinemargin-\the\foremargin} % Change the textwidth
\begin{adjustwidth}{0cm}{-87mm} % Enlarge the right margin by: 297 - 210 = 87mm
}
{
\end{adjustwidth}
\newpage
\pageaiv % Change page to A4: 210mm x 297mm
\setlength{\pdfpagewidth}{\paperwidth} % Change the pdf page
\setlength{\pdfpageheight}{\paperheight} % Change the pdf height
\textwidth=\the\oldtextwidth
}
R.
Re: need a A3 Paper in a A4 book
If someone can give me a hand regarding the above discussion it would be great.
Basically I want to have A4 pages with the occasional A3 page, within my document. I have just installed the lyx 2.0.5 bundle on windows 7, and have worked through tutorials and know the basic use (but I am a total beginner).
I tried the pdfpages package, to insert a single A3 page pdf file. But it remains as an A4 page when I preview the pdf output.
Also, this to me isn't a good solution. Ideally I want to have figs and text on the a3 page that will show up in the LOF and TOC, with page numbers. I don't think adding the external pdf file can do this?
So the next solution posted using Memoir means nothing to me... where do you put this code, and how do you embed using the \begin \end?
Appreciate any help!
Thanks,
Reuben