我可以将底部 2 处居中的数字移到左侧吗?

我可以将底部 2 处居中的数字移到左侧吗?

我可以将位于底部 2 中心的数字 [ 在本问题的最后一行 ] 移到左边手边?

\documentclass[landscape,a4paper]{article}
\usepackage{pdfpages}
\usepackage{pgfmath}
%\usepackage[margin=1cm,showframe]{geometry}% MWE only

\pgfmathsetmacro{\scale}{(\paperheight-2cm)/(\paperwidth-3cm)}% 1cm margin
\pgfmathsetlengthmacro{\delta}{\paperwidth-2cm-2*\scale*(\paperheight-3cm)-4mm}% 4mm fudge factor

\newcommand\gettitle[1]{%
  \directlua{%
    local filename = kpse.find_file("#1", 'graphic/figure')
    doc = pdfe.open(filename)
    info = pdfe.getinfo(doc)
    title = info['Title']
    tex.print(title)
  }}

\begin{document}

%  \includepdf[scale=1.02, nup=2x1,pages=1-8,trim=2.5cm 2.5cm 5.5cm 7.0cm,pagecommand={\thispagestyle{plain}}]{sh1.pdf}

%pagecommand={\thispagestyle{plain}}

  \includepdf[scale=\scale,noautoscale,nup=2x1,pages=1-,delta={\delta} 0pt,offset=0pt -3mm,% offset in reverse order
  trim=2.5cm 2.5cm 5.5cm 7.0cm,pagecommand={\thispagestyle{plain}}]{example-image-duck.pdf}

\end{document}

在此处输入图片描述

答案1

横向页面中间的页码是您的文章类文档的页码。它之所以在那里是因为pagecommand={\thispagestyle{plain}}。(请注意:pagecommand={}会更短,并且在示例中会产生相同的结果。)

因为在我看来这个页码没有任何意义,所以我只需删除 pagecommand 选项即可删除页码。

但如果你真的想移动它,可以使用例如,fancyhdr或者scrlayer-scrpage配置页码的另一种放置方式。下面是使用 的(简化)示例scrlayer-scrpage

\documentclass[landscape,a4paper]{article}
\usepackage{pdfpages}
\usepackage[footwidth=paper]{scrlayer-scrpage}
\pagestyle{plain}
\cfoot*{}
\ifoot*{\makebox[.5\paperwidth][c]{\pagemark}}

\begin{document}

\includepdf[nup=2x1,height=\paperheight-7.5cm,delta=5cm 0pt,pages=1-,pagecommand={}]{example-image-a4-numbered.pdf}

\end{document}

使用 scrlayer-scrpage 输出两页

\cfoot有关、\ifoot和的更多信息,请参阅手册\pagemark。手册还解释了如何定义新的页面样式,而不是使用已定义的页面样式plain

或者再次删除选项pagecommand并将选项使用picturecommand\put \thepage您想要的任何位置(缩短示例):

\documentclass[landscape,a4paper]{article}
\usepackage{pdfpages}

\begin{document}

\includepdf[nup=2x1,height=\paperheight-7.5cm,delta=5cm 0pt,pages=1-,picturecommand={\put(.25\paperwidth,3.3cm){\thepage}}]{example-image-a4-numbered.pdf}

\end{document}

使用 picturecommand 输出两页

相关内容