LyXneed a A3 Paper in a A4 book

Information and discussion about LyX, a WYSIWYM editor, available for Linux, Windows and Mac OS X systems.
Post Reply
masterage
Posts: 1
Joined: Thu Jul 30, 2009 4:07 pm

need a A3 Paper in a A4 book

Post by masterage »

Hello friends,

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

need a A3 Paper in a A4 book

Post by gmedina »

Hi,

this other thread contains useful suggestions. I don't know how to work with LyX, though.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
remusmp
Posts: 25
Joined: Sat Oct 17, 2009 8:37 pm

need a A3 Paper in a A4 book

Post by remusmp »

Hej,

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
}
Embed your A3 content in \begin{ChangeToA3Paper} and \end{ChangeToA3Paper}.

R.
Stalemate
Posts: 1
Joined: Sun Jan 27, 2013 2:45 pm

Re: need a A3 Paper in a A4 book

Post by Stalemate »

Hello,

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
Post Reply