[Tex/LaTex] When specifying placement of floats, is the list prioritized

floatspositioning

When specifying a float's placement, e.g. [htpb], is the order of the arguments specifying the priority of them?

Example:

\begin{figure}[htpb]
\includegraphics[width=0.7\textwidth]{sampleImage}
\caption{Example caption}
\label{fig:sampleImage} 
\end{figure}

Best Answer

No, the order of the placement options is irrelevant. Every placement option will be stored as bit in a single value, so [tb] and [bt] will give the same value and therefore will have the same result.

See What is the exact purpose of \ftype@<TYPE>? for implementation details.