我的文档中构造了一个覆盖整个横向页面的表格。
\documentclass{article}
\begin{document}
\begin{landscape}
\begin{table}
% lot of information, goes over whole page
\end{table}
\end{landscape}
\end{document}
唯一的问题是表格正好位于我放置的位置。使用\begin{sidewaystable}
该rotating
包的问题是它在 PDF 上查看时不会旋转页面。
编辑:目标是旋转物体并同时保持其浮动。(正如@Skillmon 所指出的那样。)
答案1
\documentclass{article}
\usepackage{rotating,fancyhdr,ifthen}
\fancyhead[L]{%
\ifthenelse{\equal{\value{page}}{\pageref{tt}}}
{landscape \global\pdfpageattr{/Rotate 90}}
{portrait \global\pdfpageattr{}}}
\pagestyle{fancy}
\begin{document}
aaaa
\begin{sidewaystable}
\centering
TTTTTTTTTTTTTTTTTTTT
\caption{ttttt\label{tt}}
\end{sidewaystable}
aaaaa
\pagebreak
aaaaa
aaaaa
\end{document}
答案2
这可能是此处旧问题的重复:如何让文字环绕横向页面,虽然很难说,因为措辞有点奇怪。
无论如何,使用该包的答案afterpage
对我来说很有帮助。
\afterpage{%
\begin{landscape}
\begin{table}
% lot of information, goes over whole page
\end{table}
\end{landscape}
}