我有 3 个连续的侧向表格,但已将表格拆分为 3 个单独的表格,每个表格占一页(更简单)。我对文档使用了双面选项。但这似乎会影响表格的旋转:我想要的是,当您阅读论文时,表格的顶部始终在左侧,这样您就可以阅读两个表格而无需翻转纸张。
我正在考虑类似\rotatebox{180}
或 之类的东西\begin{rotate}{180}
,但这似乎不起作用,因为旋转轴在中间(或其他地方?),还是因为我把它放在了错误的位置?这是我的表格的开头:
\documentclass[10pt,a4paper,twoside]{report}
\begin{document}
\begin{sidewaystable}\footnotesize
\caption{}
\begin{minipage}{\textwidth}
\begin{tabularx}{\textwidth}{
>{\raggedright\arraybackslash\advance\hsize9em}X
>{\raggedright\arraybackslash\advance\hsize9em}X
X
X
X
>{\raggedright\arraybackslash\advance\hsize4em}X
>{\raggedright\arraybackslash\advance\hsize8em}X
}
\hline
1 & 2 & 3 & ... \\
有人有提示吗?
答案1
使用包figuresright
的选项rotating
。详细信息请参阅手册第 2.1 节。
\documentclass[twoside]{report}
\usepackage[figuresright]{rotating}
\newcommand*{\dummysidewaystable}{%
\begin{sidewaystable}
\begin{tabular}{cc}
Knuth & Lamport
\end{tabular}
\end{sidewaystable}
}
\begin{document}
\dummysidewaystable
\dummysidewaystable
\dummysidewaystable
\end{document}