这就是我所拥有的:
\begin{table}[h]
\begin{minipage}{.5\linewidth}
\begin{tabular}{|| c || c | c | c | c ||}
\hline
$a_0$ & & & &\\
\hline
$a_1$ & & & &\\
\hline
$a_2$ & & & &\\
\hline
\end{tabular}
\end{minipage}%
\begin{minipage}{.5\linewidth}
\begin{tabular}{|| c || c | c | c | c ||}
\hline
$a_0$ & & & &\\
\hline
$a_1$ & & & &\\
\hline
$a_2$ & & & &\\
\hline
\end{tabular}
\end{minipage}
\end{table}
表格并排放置,但它们被放在一起并与左边距对齐。
有没有办法将我的两个表格居中,同时仍使用标准表格和迷你页面?我尝试将它们都放在一个居中的框中,但这并没有改变任何东西。
答案1
不清楚表格应该如何放置在页面上。可能如下:
(红线表示文本边框)
\centering
对于上述结果,您只需在每个结果后添加\begin{minipage}{...}
:
\documentclass{article}
%---------------- show page layout. don't use in a real document!
\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.15pt}
\renewcommand*\ShowFrameColor{\color{red}}
%---------------------------------------------------------------%
\begin{document}
\begin{table}[ht]
\begin{minipage}{.5\linewidth}
\centering % <---
\begin{tabular}{|| c || c | c | c | c ||}
\hline
$a_0$ & & & &\\
\hline
$a_1$ & & & &\\
\hline
$a_2$ & & & &\\
\hline
\end{tabular}
\end{minipage}%
\begin{minipage}{.5\linewidth}
\centering % <---
\begin{tabular}{|| c || c | c | c | c ||}
\hline
$a_0$ & & & &\\
\hline
$a_1$ & & & &\\
\hline
$a_2$ & & & &\\
\hline
\end{tabular}
\end{minipage}
\end{table}
\end{document}
注意:每个表格的宽度应该小于的宽度minipage
。