LaTeX中如何增加两个表格之间的空间?

发布于 2024-07-11 08:43:31 字数 800 浏览 2 评论 0原文

我对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心头的小情儿 2024-07-18 08:43:31

您可以在表格之间插入 \hspace{2em}。 如果您需要更多或更少的空间,请更改该值。

You could insert \hspace{2em} between the tables. Change the value if you want more or less space.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文