I have a figure whose placement I specified to [t], but still a single line of text somehow manages to squeeze in above it in an ugly manner.
This occurs on a page in two-column mode, which has two additional table-floats. Code is as follows:
Code: Select all
\begin{table}
\caption{Table1.\label{tab1}}
\begin{tabular}{c@{\hspace{20pt}}l@{\hspace{20pt}}l}
x & x & x \\
x & x & x \\
x & x & x \\
x & x & x \\
\end{tabular}
\end{table}
\begin{table}
\caption{Table2.\label{tab2}}
\begin{tabular}{c@{\hspace{15pt}}l@{\hspace{15pt}}.@{\hspace{15pt}}.}
x & x & \multicolumn{1}{c}{x} & \multicolumn{1}{c}{x} \\
\hline
x & x & x & x \\
x & x & x & x \\
x & x & x & x \\
x & x & x & x \\
\end{tabular}
\end{table}
\begin{figure}[t]
\includegraphics[scale=0.65]{name_of_figure}
\caption{Caption.\label{fig1}}
\end{figure}
Text text text text text text text text text text text text text text
text text text text text text text text text text text text text text
text text text text text text text text text text text text text text
text text text.
Text text text text text text text text text text text text text text
text text text text text text text text text text text text text text
text text text text text text text text text text text text text text
text text text.
I have tried rearranging the order in which text and the figure-environment appear in numerous ways, but nothing seems to help. Any ideas?