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
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
- 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}