如何在 Overleaf 中仅旋转一页?

如何在 Overleaf 中仅旋转一页?

在此处输入图片描述我的 latex 文档中有一个表格太宽,所以我尝试使用pdflscape来旋转它所在的页面,但是只要我添加\usepackage{pdflscape},整个文档中的所有文本都会旋转。在有问题的表格周围使用\begin{landscape}和没有任何作用,并且任何地方都没有其他横向命令的实例。我不明白为什么所有内容都被翻转,而不仅仅是和命令\end{landscape}之间的部分。如果它是相关的,这是Overleaf 中带有这些包的文档:。这是 TeX 代码的骨架:beginendtwocolumnmathtools, amsmath, pdflscape, geometry

\documentclass[twocolumn,linenumbers]{aastex631}
\usepackage{mathtools}
\usepackage{amsmath}
% \usepackage{pdflscape}
% \usepackage{geometry}

\begin{document}
\title{Title}
\author{Me}
\affiliation{My School}

\section{Results}
% \newgeometry{margin=1cm}
% \begin{landscape}
    \begin{deluxetable*}{CCC}[htb]
        \tablecolumns{3}
        \tablecaption{Data}
        \tablehead{\colhead{col 1} & \colhead{col 2} & \colhead{col 3}}
        \startdata
        0 & 1 & 2 \\
        3 & 4 & 5 \\
        6 & 7 & 8
        \enddata
        \tablecomments{}
    \end{deluxetable*}
% \end{landscape}
% \restoregeometry
\end{document}

答案1

我认为问题在于使用 aastex 格式。他们提供了一个\rotate位于豪华表内的函数

\begin{deluxetable*}
\rotate
\startdata
...

相关内容