LaTeX中如何增加两个表格之间的空间?
我对 LaTeX 完全陌生,但我想做的事情却无法实现。 下面,我有两个并排出现的表格的代码(这就是我想要的)。 但它们距离很近,我希望两张桌子之间可以有一英寸的距离。 我怎样才能达到这样的效果呢?
\begin{center}
\begin{tabular}[t]{ c | c }
$n$ &$f(n)$ \\ \hline
1 & 6 \\
2 & 7 \\
3 & 6 \\
4 & 7 \\
5 & 6 \\
\end{tabular}
\begin{tabular}[t]{ c | c c c c c}
$g$ & 6 & 7 & 8 & 9 & 10 \\ \hline
1 & 10 & 10 & 10 & 10 & 10 \\
2 & 7 & 8 & 9 & 10 & 6 \\
3 & 7 & 7 & 8 & 8 & 9 \\
4 & 9 & 8 & 7 & 6 & 10 \\
5 & 6 & 6 & 6 & 6 & 6 \\
\end{tabular}
\end{center}
I'm completely new to LaTeX and something I'm wanting to do is eluding me. Below, I have the code for two tables which appear side-by-side (which is what I wanted). But they're very close together, I'd like to have maybe an inch in-between the two tables. How would I achieve that effect?
\begin{center}
\begin{tabular}[t]{ c | c }
$n$ &$f(n)$ \\ \hline
1 & 6 \\
2 & 7 \\
3 & 6 \\
4 & 7 \\
5 & 6 \\
\end{tabular}
\begin{tabular}[t]{ c | c c c c c}
$g$ & 6 & 7 & 8 & 9 & 10 \\ \hline
1 & 10 & 10 & 10 & 10 & 10 \\
2 & 7 & 8 & 9 & 10 & 6 \\
3 & 7 & 7 & 8 & 8 & 9 \\
4 & 9 & 8 & 7 & 6 & 10 \\
5 & 6 & 6 & 6 & 6 & 6 \\
\end{tabular}
\end{center}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在表格之间插入
\hspace{2em}
。 如果您需要更多或更少的空间,请更改该值。You could insert
\hspace{2em}
between the tables. Change the value if you want more or less space.