General ⇒ Best way to deal with screenshots?
Best way to deal with screenshots?
I was wondering what the best way would be to handle screen-shots in latex. That is, graphics that are not vectorized and thereby don't scale well when you resize them.
First of all, whats the recommended size of a screenshot so that it nicely fits in a normal A4 page? Ideally it would be small enough so that I dont have to explicitly set the width and so that it would not be scaled at all. But that does not seem possible (a small screenshot with 500 pixels was already more than twice as big as the width of the page).
Second, is there a rule of thumb on how much width an image should have compared to the width of the text (\textwidth)? Its looking somewhat weird to have it the same size as the width of text.
Thanks,
Ben
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
- pumpkinegan
- Posts: 91
- Joined: Thu May 03, 2007 10:29 pm
Re: Best way to deal with screenshots?
-
- Posts: 9
- Joined: Mon Jul 09, 2007 1:46 pm
Re: Best way to deal with screenshots?
\usepackage[dvips]{graphicx}
...
\includegrahics[scale=0.3]{screenshot.eps}
or whatever scale you like.
Re: Best way to deal with screenshots?
Re: Best way to deal with screenshots?
Best way to deal with screenshots?
Code: Select all
\usepackage{graphicx}\usepackage{calc}...\includegraphics[width=\textwidth * .75]{whatever.pdf}\includegraphics[width=4in]{somegraphic.pdf}