LyXInsert Large Picture that exceeds Margins

Information and discussion about LyX, a WYSIWYM editor, available for Linux, Windows and Mac OS X systems.
Post Reply
harper
Posts: 9
Joined: Thu Dec 01, 2011 5:15 pm

Insert Large Picture that exceeds Margins

Post by harper »

Hey there,

i'm writing with the report class "scrreprt" (KOMA Script). Now, i want to insert a picture that is really large, and i want it to be printed larger than the margins of the text are. I currently have a margin of 3 cm on both sides for the text and that is a bit small.

Is it possible to format the picture with a special "page" with unique settings to fit better?

Also i have the problem that the description does not fit on the page and is simply left out.

I hope you can help me on this,
Harper

Recommended reading 2024:

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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Stefan Kottwitz
Site Admin
Posts: 10326
Joined: Mon Mar 10, 2008 9:44 pm

Insert Large Picture that exceeds Margins

Post by Stefan Kottwitz »

Hi Harper,

you could fake the width using makebox, such as here: Centering wide tables or figures.

Such as:

Code: Select all

\begin{figure}
  \noindent\makebox[\textwidth]{%
  \includegraphics[width=1.4\textwidth]{mypic}}
  \caption{...}
\end{figure}
Stefan
LaTeX.org admin
harper
Posts: 9
Joined: Thu Dec 01, 2011 5:15 pm

Re: Insert Large Picture that exceeds Margins

Post by harper »

Hm, that does not seem to work, with your code it tells me *** (job aborted, no legal \end found)

I tried to use the code after the link, but it didnt work either..

Anyway, this would fix the problem with the width, but not with the heigth, am I right?

What I may have forgotten: The Image is in A4 format.. I don't need it to fill the whole page, but a bit lager than the margins are would be nice..
Post Reply