我使用了 sidewaystable,因为表格很大。Latex 总是以某种方式旋转表格,我希望它旋转 180 度(这样更容易阅读,因为它会在下一页继续)。
我尝试过这个:
\begin{center}
\begin{sidewaystable} [h]
\begin{turn} {180}
\captionof{table}{Overview of the handled studies.}
\begin{tabular}
...
\end{tabular}
\end{turn}{180}
\end{sidewaystable}
\label{tab:methods_overview}
\end{center}
但我得到了这个错误:!除了领导者之外,你不能在这里使用'\hrule'。
如果我在其他地方使用标题,它会转动表格,但不会转动标题。
在此先感谢您的帮助。
答案1
省略center
和turn
环境,并\centering
在之前放置指令\begin{tabular}{...}
。
如果表格材料需要旋转,使得表格底部位于左侧,请确保使用rotating
选项加载包counterclockwise
。
\documentclass{article}
\usepackage{rotating}
\begin{document}
\begin{sidewaystable}
\caption{Overview of the handled studies.}
\label{tab:methods_overview}
\centering
\begin{tabular}{cccc}
\hline
a & b & c & d \\
\hline
\end{tabular}
\end{sidewaystable}
\end{document}