毕业论文表格旋转90度

毕业论文表格旋转90度

在撰写毕业论文时,如果遇到长表格超出页面边界,可以使用LaTeX的sidewaystable环境将表格旋转90度。以下是具体的步骤:

1. 在导言区添加rotating宏包:

\usepackage[figuresright]{rotating}

2. 将标准的table环境改为sidewaystable环境,并确保表头在左侧,特别适用于book类文档,以解决偶数页表头方向错误的问题:

\caption{This is the caption}

\centering

\begin{tabular}{|c|c|c|c|}

\hline

\end{tabular}

\end{sidewaystable}