LyX ⇒ Insert Large Picture that exceeds Margins
Insert Large Picture that exceeds Margins
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
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
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}
Re: Insert Large Picture that exceeds Margins
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..