在 LaTeX 中创建横向跨页表
我有一个大表,我想将其包含在 LaTeX 文档中。它对于页面来说太宽了,所以我想将其旋转 90 度并使其横向。那么它对于页面来说太高了,所以我希望它跨越多个页面。
我已经设法将其横向显示:
\begin{landscape}
\begin{table}[htdp]
\begin{center}
\begin{tabular}{c|l|c|l|c|c|c}
[ Data here ]
\end{tabular}
\end{center}
\end{table}
\end{landscape}
所以问题是,我现在怎样才能让它跨越多个页面?
I have a large table I want to include in a LaTeX document. It is too wide for a page, so I want to rotate it 90 degrees and have it landscape. Then it will be too tall for the page, so I want it to span multiple pages.
I have managed to get it landscape with:
\begin{landscape}
\begin{table}[htdp]
\begin{center}
\begin{tabular}{c|l|c|l|c|c|c}
[ Data here ]
\end{tabular}
\end{center}
\end{table}
\end{landscape}
So the question is, how can I now get it to span multiple pages?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 longtable 包。
Have a look at the longtable package.