0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

LaTeXでテーブルを中央に配置する

Posted at

boxに入れて中央に配置することで解決します.

\begin{table}
  \caption{Here is the caption}
  \label{tab:label}
  \makebox[1 \textwidth][c]{
    % \resizebox{1.3 \textwidth}{!}{   % 必要ならコメントアウトを外してリサイズする
      \begin{tabular}{lc}
        \toprule
        A & B \\
        \midrule
        C & D \\
        E & F \\
        \bottomrule
      \end{tabular}
    }
  }
\end{table}
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?