我希望 PDF 为横向,但标题和页眉与纵向模式相同。附件是我从代码中获得的当前输出的图像。此外,我还添加了我正在使用的当前代码。
\documentclass[
12pt,
oneside,
english,
singlespacing]{MastersDoctoralThesis}
\usepackage{pdfpages}
\usepackage{pdflscape}
\begin{document}
\pagestyle{thesis}
\chapter{Schematics}
\begin{landscape}
\includepdf[pages=-, landscape=true, pagecommand={\pagestyle{thesis}}, picturecommand*={\put (\LenToUnit{.1\paperwidth},18) {CAD Presentation of Design with Labels};}]{Appendices/Watch_Lid.pdf}
% \includepdf[pages=-,linktodoc=true, landscape, picturecommand*={\put (\LenToUnit{.05\paperwidth},20) {Page 3 in the original.};}]{Appendices/Watch_Face.pdf}
\end{landscape}
\end{document}
答案1
Pdfpages 改变了方向使用选项时的页面landscape
。但它不会也不能改变页面布局,因为如何更改页面布局在很大程度上取决于所使用的 LaTeX 类。(旋转页眉/页脚是否正确也并非毫无争议。在幻灯片或其他在线文档上可能很舒服,但在书中可能看起来很奇怪。)
由于我不了解您的 LaTeX 课程MastersDoctoralThesis
,我将借用scrreport
KomaScript 来展示如何更改页面布局。
\documentclass[areasetadvanced,DIV=12]{scrreport}
\usepackage{scrlayer-scrpage}
\cohead{testing}
\pagestyle{scrheadings}
\usepackage{mwe}
\usepackage{pdfpages}
\begin{document}
\KOMAoptions{paper=portrait, DIV=current}
\lipsum[1-6]
\KOMAoptions{paper=landscape,DIV=current}
\includepdf[
scale=0.7,
pagecommand={},
picturecommand*={\put(150,70){some test}}
]{example-image.pdf}
\lipsum[1-6]
\KOMAoptions{paper=portrait,DIV=current}
\lipsum[1-6]
\end{document}