I need to place a minipage on the top of a page. I use the t option, but seems not working.
\usepackage{abbrevs}
\usepackage{adjustbox}
\usepackage{floatrow}
\usepackage{graphicx}
\usepackage{latexsym}
\usepackage{paralist}
\usepackage{pgfplots, pgfplotstable}
\usepackage{subfig}
\usepackage{tikz}
\usepackage{times}
\begin{minipage}[t]{0.8\textwidth}
\begin{minipage}[b]{0.4\textwidth}
\centering
\adjustbox{width=0.7\textwidth} {
\begin{tikzpicture}[text centered, nodes = {draw, minimum size = 22mm}]
\matrix at (0, 0)
{
\node {$ 1 $}; & \node {$ 1 $}; \\
\node {$ *1 $}; & \node {$ *1 $}; \\
};
\end{tikzpicture}
}
\captionof{figure}{fig 1.}
\end{minipage}%
\hfill
\begin{minipage}[b]{0.46\textwidth}
\centering
\adjustbox{width=1.2\textwidth} {
\begin{tikzpicture}[text centered, nodes = {draw, minimum size = 12mm}]
\matrix at (0, 0)
{
\node {$ 2 $}; & \node {$ \forall $}; \\
\node {$ 2 $}; & \node {$ 2 $}; \\
};
\end{tikzpicture}
}
\captionof{figure}{fig 2.}
\end{minipage}
\end{minipage}


minipageabove the text area? – Gonzalo Medina Mar 13 '12 at 18:26\begin{figure}[t], not in the top margin. Because there are two figures in the minipage, I cannot use figure to wrap the minipage again. – Kejia柯嘉 Mar 13 '12 at 19:03