Difference between revisions of "Placing figures/tables etc. using LaTeX"

From Notes_Wiki
(Created page with "=Placing using LaTeX= ==Placing figure at desired position== To place figures in LateX at the exact position either we can use <pre> \begin{figure}[h!] </pre> where ! ma...")
 
m
Line 1: Line 1:
<yambe:breadcrumb self="Placing figures/tables etc. using LaTeX">LaTeX|LaTeX</yambe:breadcrumb>
=Placing using LaTeX=
=Placing using LaTeX=


Line 14: Line 15:
</pre>
</pre>
which ensures that figure goes at the proper place.
which ensures that figure goes at the proper place.
<yambe:breadcrumb self="Placing figures/tables etc. using LaTeX">LaTeX|LaTeX</yambe:breadcrumb>

Revision as of 06:13, 18 September 2018

<yambe:breadcrumb self="Placing figures/tables etc. using LaTeX">LaTeX|LaTeX</yambe:breadcrumb>

Placing using LaTeX

Placing figure at desired position

To place figures in LateX at the exact position either we can use

    \begin{figure}[h!]

where ! makes LaTeX try very hard to place figure at same position.

If we want to ensure that figure goes at the exact place then we can include package float using '\usepackage{float}' and then use

    \begin{figure}[H]

which ensures that figure goes at the proper place.


<yambe:breadcrumb self="Placing figures/tables etc. using LaTeX">LaTeX|LaTeX</yambe:breadcrumb>