122

I'm trying to change the image size (make it look smaller than the original).

I tried with the next code but the image still shows at its original size.

\begin{figure}[h!]
\centering
\includegraphics[width=50mm]{method.eps}
\caption{Overall process}
\label{fig:method}
\end{figure}

I am using TeXnic Center with profile latex>ps>pdf

Update:

It seems to work now but I do not why

I first built the project with the profile latex => ps and then I built it with latex=>ps=>pdf

Enrique
  • 1,425

4 Answers4

116

Use the scale=0.5 option in the \includegraphics command to shrink the image to 50% of its original size. That is, \includegraphics[width=50mm,scale=0.5]{method.eps}. You can use a different percentage if needed.

DJJerome
  • 4,056
51

I usually just do \includegraphics[width=0.7\columnwidth]{figure}, where 0.7 is the fraction of the column width.

This is useful for IEEE double column papers.

21

\includegraphics[scale=0.25] {name.jpg}

This works well. scale=0.25 is to shrink the image to 0.25 but can use any ratio.

  • 4
    Welcome, what information does your answer add compared to the accepted answer? – Johannes_B Jul 16 '18 at 04:52
  • 7
    @Johannes_B the original answer uses both width= and scale=, which is not a good idea. Use either but not both. – A.G. Jun 19 '20 at 11:50
-2

Based on my experience, I added [scale=0.25] after \includegraphics [scale=0.25] is used to reduce the image to a Scale of 0.25. However there could use other ratios.

Previously I added [scale=0.25] :

\includegraphics{Research methodology.png}}

After I add [scale=0.25] the result is as follows:

\includegraphics[scale=0.25]{Research methodology.png}}

And examples of other formats like this :

\includegraphics[width=4cm]{Research methodology.png}}