用乳胶制作居中表格?

用乳胶制作居中表格?

我正在尝试使用以下代码在乳胶中制作表格,但是表格超出了布局。

这是我正在尝试的代码:

\begin{table}
\caption{Table Title}
\begin{tabular}{|c|c|c|}
\hline
& $DOC \in P$  & $DOC \notin P$ \\ \hline
$T \in DOC$ & A & B \\ \hline
$T \notin DOC$ & C & D\\
\hline
\end{tabular}
\\[10pt]
\caption*{The caption without a number}
\end{table}

结果如下:

在此处输入图片描述

答案1

使用\centering

\begin{table}
\centering % here
\caption{Table Title}
\begin{tabular}{|c|c|c|}
\hline
& $DOC \in P$  & $DOC \notin P$ \\ \hline
$T \in DOC$ & A & B \\ \hline
$T \notin DOC$ & C & D\\
\hline
\end{tabular}
\\[10pt]
\caption*{The caption without a number}
\end{table}

结果:

在此处输入图片描述

相关内容