我正在编写一个仅包含表格的多页文档。页面为 A4(信纸大小),横向(!),每页只有一个表格。我使用的landscape
环境:
\documentclass[10pt]{report}
\usepackage{polyglossia}
\setdefaultlanguage{english}
\usepackage{pdflscape}
\begin{document}
\begin{landscape}
\begin{tabular}{|r|r|r|}
some table
\end{tabular}
\newpage
\begin{tabular}{|r|r|r|}
some table
\end{tabular}
\end{landscape}
\end{document}
代码可以运行,但是我不确定我的实现是否是最好的。问题:
- 我应该为每个页面创建一个单独的横向环境吗?
- 页码显示在横向页面的左边距(技术上是页面的底部)。可以移动它们吗?
编辑:我忘了将包添加pdfscape
到最小示例中。
答案1
\documentclass[10pt,landscape]{report}
\usepackage[pass]{geometry}
\begin{document}
\begin{tabular}{|r|r|r|}
some table
\end{tabular}
\newpage
\begin{tabular}{|r|r|r|}
some table
\end{tabular}
\end{document}