我的问题与如何让文字环绕横向页面。与那里的解释和解决方案相反,我的目标是让表格横向排列,并在表格左侧垂直放置标题。我了解了两种指定横向页面的方法。上述线程中提倡的解决方案是\rotatebox{90}
与为图形指定的浮动一起使用[p]
。这也适用于table
。但是,当我添加标题时,caption
标题位于水平方向的表格顶部(未旋转)。文本浮动(环绕)表格是可以的。我使用的代码基本上是
\begin{table} [p]
\caption{This is the table caption}
\rotatebox{90}{
\centering
\begin{tabular}
...
\end{tabular}
}
\end{table}
另一种方法是使用包pdflandscape
。代码现在变成
\begin{landscape}
\begin{table} [p]
\caption{This is the table caption}
\centering
\begin{tabular}
...
\end{tabular}
}
\end{table}
\end{landscape}
标题恰好位于表格上方(垂直位于左侧),但现在文本不再浮动在表格周围。如何让浮动文本和标题都垂直位于左侧?