将包含横向表格的页面旋转为横向模式

将包含横向表格的页面旋转为横向模式

我有一张水平方向很长的表格,因此我将其横向显示。唯一的问题是,当我生成 pdf 时,我必须转动头部才能阅读表格。有人能帮我将表格横向显示,并让页面也以这种方式查看吗?这就是我目前所拥有的。

  \begin{sidewaystable}
  \centering
  \begin{tabular}{|p{4.5cm}|p{1.5cm}|p{4.5cm}|p{4.5cm}|p{4.5cm}|}
(I have my table contents here)
\end{tabular}
\end{sidewaystable}

答案1

首先:欢迎来到 TeX.SX!

只要确保包括最小工作示例...这样其他人就可以重现您的问题并找出解决方法。但我明白您的意思,这是长表的常见问题。

只需加载包pdflscape并使用landscape环境,这将解决问题并自动旋转页面。这在某些平板电脑上会出现错误,具体取决于所使用的 pdf 阅读器(我听说它可以很好地与 adobe 和 MS 配合使用)。

有关详细信息,请查看 Herbert 的回答这里

\documentclass{article}
\usepackage{pdflscape}
\begin{document}
\begin{landscape}
\begin{table}
  \centering
  \begin{tabular}{|p{4.5cm}|p{1.5cm}|p{4.5cm}|p{4.5cm}|p{4.5cm}|}
(I have my table contents here)
\end{tabular}\caption{A simple table}
\end{table}
\end{landscape}
\end{document}

相关内容