乳胶宽长桌
我用的是一张又宽又长的桌子。我不知道如何将其放入我的论文中。由于它很宽,可以选择侧向稳定。同时它也太长了,一页都装不下,所以我想到了longtable。但是,我无法使 sidewaystable 和 longtable 一起工作在一张桌子上,例如
\begin{sidewaystable}
\begin{longtable}{| c ||c| c| c |c| c|| c |c| c|c|c| }
\caption{A glance of images.}
\centering
% table content
\end{longtable}
\end{sidewaystable}
我该怎么办?
I am using a wide and long table. I am not sure how to put it in my thesis. Since it is wide, sidewaystable may be the choice. Meanwhile it is also too long to fit in one page, so longtable comes into my mind. However, I cannot make sidewaystable and longtable working together for one table, e.g.
\begin{sidewaystable}
\begin{longtable}{| c ||c| c| c |c| c|| c |c| c|c|c| }
\caption{A glance of images.}
\centering
% table content
\end{longtable}
\end{sidewaystable}
What shall I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
lscape
包与longtable
或supertabular
。Use
lscape
package withlongtable
orsupertabular
.在列声明中使用
p{width}
代替 l、r 或 c,如下所示:然后,为了使内容保持居中,请添加
>{\centering}< /code> 在
p{width}
之前,如下所示:use a
p{width}
in place of l,r, or c in your column declaration, like this:Then, to keep your content centered, add a
>{\centering}
before thep{width}
, like this: