1

Possible Duplicate:
Macro for figure position?

Is it possible to make change that changes all instances of

\begin{figure}

into

\begin{figure}[h]

?

1 Answers1

1
\usepackage{float}
\floatplacement{figure}{ht}

I use ht instead of h because LaTeX doesn't allow only a h placement for a float. h will be automatically converted to ht and make a warning.

Leo Liu
  • 77,365