我必须在 A4 文档中插入一个大图形,图形适合 A4 高度,但要宽得多。我过去常常\pdfpagewidth=3.1\pdfpagewidth
增加纸张尺寸,并包含图形。我使用srcbook
(单面)将页眉和页脚对齐到右侧。超大页面的问题是,页眉和页脚没有移动到最后的右端。最后,超大页面被折叠起来,以便它适合 A4 的打印论文,我希望页眉和页脚在您打开书时最终看到的页面上。
这就是我迄今为止所做的事情:
% Example to show oversized page with figure
\documentclass[fontsize=12pt,DIV14,BCOR15mm,oneside, headings=small,headsepline, appendixprefix]{scrbook}
\usepackage{graphicx} % Package for Pictures
\usepackage[bf,footnotesize,width=.9\textwidth,format=hang]{caption}
% Oneside option puts header and footer in centered alignment, this changes to right alignment
\usepackage{scrpage2}
\pagestyle{scrheadings}
\clearscrheadfoot
\ofoot[\pagemark]{\pagemark}
\ohead{\headmark}
\begin{document}
\chapter{Literature Review - Experimental Work}
A bit of text ….
\newpage
A bit of text again, just to show the header and footer on the usual A4 pages.
\newpage
\begingroup
\pdfpagewidth=3.1\pdfpagewidth
\begin{figure}[p]
\centering
{\includegraphics[height=227mm]{HistoricalOverview.pdf}}
\caption{Historical Overview}
\end{figure}
\clearpage
\endgroup
\end{document}
这是页眉和页脚处于错误水平位置的输出:
如何更改页眉/页脚的水平对齐方式?我查看了\changepage
和将带有图形的 A3 页面插入带有活动参考资料的 A4 文档中但我没有让它工作。
任何建议都有帮助,谢谢。Gerlind
答案1
我认为该类不测量右边距,而是测量文本宽度。所以我做了一些修改并改变了它。如果您不介意装饰线沿着页面顶部延伸,它对我来说看起来还不错。您可以使用\textwidth
更精确的值。我相信更专业的人士可以提供更优雅的解决方案!
在您的群组内:
\begingroup
\pdfpagewidth=3.1\pdfpagewidth
\textwidth=590mm
\begin{figure}[p]