Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding full page figures in Latex, how?

Tags:

latex

figure

I have a full-page figure that LaTeX keeps putting at the end because of its size.

I would like it to be integrated on a separate page in the flow of text. How can I do it?

like image 768
Víctor Avatar asked Dec 26 '09 17:12

Víctor


People also ask

How do I stretch a figure in LaTeX?

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

How do I add figures in overleaf?

The command \includegraphics[scale=1.5]{overleaf-logo} will include the image overleaf-logo in the document, the extra parameter scale=1.5 will do exactly that, scale the image 1.5 of its real size. You can also scale the image to a some specific width and height.


1 Answers

\begin{figure}[hbtp] 
  • h = here
  • b = botom
  • t = top
  • p = page of floats

Algorithm will try the current position in document first, then bottom, then top and then on a seperate page. If you just specify 'h' you will force placement where the figure command is in the document. The order is encoded by you -- i.e., you could specify ptbh which would force a reverse order of evaluation.

p.s., I would strongly recomend anyone using latex to use lyx. Its just as powerfull as straight latex but its wysiwyg and you can drop to tex anywhere you want.

like image 150
Hassan Syed Avatar answered Oct 11 '22 12:10

Hassan Syed