Difference between revisions of "Placing figures/tables etc. using LaTeX"
From Notes_Wiki
m |
m |
||
Line 1: | Line 1: | ||
[[Main Page | Home]] > [[LaTeX]] > [[Placing figures/tables etc. using LaTeX|Placing using LaTeX]] | |||
==Placing figure at desired position== | ==Placing figure at desired position== | ||
Line 17: | Line 16: | ||
[[Main Page | Home]] > [[LaTeX]] > [[Placing figures/tables etc. using LaTeX|Placing using LaTeX]] |
Latest revision as of 06:07, 18 April 2022
Home > LaTeX > 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.