I have a document with many floats (figures, specifically). I want to be able to change the global floats positioning policy from htbp to just h (or even H with the floats package). For my-own reasons, I don't want to do this by appending the [h] argument to each float env.
One option that I can think of is using a macro:
\newcommand{\mypos}{h} % or htbp
\begin{figure}[\mypos]...
I also prefer not to do that - It is cumbersome.
Is there a way to set the global float positioning argument globally?
