어떻게 시작하나요{tabu}[t]?

어떻게 시작하나요{tabu}[t]?

내 그림과 플롯을 페이지 상단에 배치하고 싶습니다. 이것은 피규어 작품과 함께

\begin{figure}[h]

\begin{minipage}[b]{1.0\linewidth}
  \centering
  \centerline{\includegraphics[width=8.5cm]{results}}
%  \vspace{2.0cm}
  \centerline{(a) Result 1}\medskip
\end{minipage}
%
\begin{minipage}[b]{.48\linewidth}
  \centering
  \centerline{\includegraphics[width=4.0cm]{results}}
%  \vspace{1.5cm}
  \centerline{(b) Results 3}\medskip
\end{minipage}
\hfill
\begin{minipage}[b]{0.48\linewidth}
  \centering
  \centerline{\includegraphics[width=4.0cm]{results}}
%  \vspace{1.5cm}
  \centerline{(c) Result 4}\medskip
\end{minipage}
%
\caption{Example of placing a figure with experimental results.}
\label{fig:res}
%
\end{figure}

하지만 아래 코드는 작동하지 않습니다.

\begin{tabu}[t] to 0.8\columnwidth { | X[c] | X[c] | }
    \hline
    \textbf{Methods} & \textbf{Time in seconds} \\
    \hline
    MCG-D & 160  \\
    \hline
    MCG  & 100  \\
    \hline  
    SS  & 15 \\
    \hline  
    EB & 1.5  \\
    \hline  
    3DOP &  1.2 \\
    \hline  
    BING &  \textbf{0.01} \\
    \hline
    \textbf{Ours} & 0.12 \\
    \hline
\end{tabu}

답변1

figure테이블과 동등한 환경 은 table환경입니다. 환경 tabu을 포장하십시오 table.

\begin{table}[t]
  \begin{tabu} to 0.8\columnwidth { | X[c] | X[c] | }
  ...
  \end{tabu}
  \caption{Some caption.}
\end{table}

관련 정보