floats
WARNING: Please update your bookmarks! The content of this site has been moved to http://dille.name where it will be updated as needed. This page will remain unchanged.
floating environment will allow you to have figures to be placed automatically in sensible places by tex:- standard: this floating environment will cause the figure to use the whole width of the page:
- document layout:
% ... \begin{document} % ... \begin{figure}[PLACEMENT] % ... \end{figure} % ... \end{document} - placement:
h: heret: topb: bottomp: on page containing floats!: force
\begin{figure}[t] \parbox[t]{7cm}{ \includegraphics[keepaspectratio=true,width=7cm]{figure1} \caption{figure 1} \label{fig.figure1} } \parbox[t]{7cm}{ \includegraphics[keepaspectratio=true,width=7cm]{figure2} \caption{figure 2} \label{fig.figure2} } \end{figure} - document layout:
- floating: this floating environment will allow text to be printed next to the figure.
- document layout:
% ... \usepackage[OPTIONS]{floatflt} % ... \begin{document} % ... \begin{floatingfigure}[PLACEMENT]{WIDTH} % ... \end{floatingfigure} % ... \end{document} - options:
rflt: placed right in paragraphlflt: placed left in paragraphvflt: placed left on even-numbered pages and right on odd-numbered
- placement:
r: see abovel: see abovep: see abovev: see vflt package option
NOTE: using this package floating figures need to placed with care: they might disappear if placed too close to sectioning commands. they might overlap with list environments.
- document layout:
- referring to figures is referring to captions: see caption
- stopping a floating environment to be moved to the end of the document
% places all floats and starts a new page \clearpage % places all floats and starts a new double page \cleardoublepage



