所有页面都有边框

所有页面都有边框

我正在编写一份报告,希望所有页面都有边框。我已使用此处提供的解决方案成功添加边框: https://tex.stackexchange.com/a/808/205277

但它并不适用于所有页面。有什么想法可以做到这一点吗?我非常想对问题本身发表评论以寻求帮助,但由于我是新手,我没有足够的声誉来做到这一点,所以我不得不将其作为单独的问题发布

LaTeX 序言:

\usepackage[T1]{fontenc}
%\usepackage[latin9]{inputenc}
\usepackage{geometry}
\usepackage{pgf}
\usepackage{pgfpages}
\usepackage{fontspec}
\setmainfont[Mapping=tex-text]{Times New Roman}
\setsansfont[Scale=0.95,Mapping=tex-text]{Times New Roman}
\usepackage{xcolor}
\usepackage{babel}


\geometry{verbose,tmargin=1.6cm,bmargin=1.6cm,lmargin=10pt,rmargin=10pt}
\usepackage{fancyhdr}
\pagestyle{fancy}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\usepackage{babel}
\usepackage{lipsum} %Just a package for generating garbage text which is not otherwise required 


\pgfpagesdeclarelayout{boxed}
{
  \edef\pgfpageoptionborder{0pt}
}
{
  \pgfpagesphysicalpageoptions
  {%
    logical pages=1,%
  }
  \pgfpageslogicalpageoptions{1}
  {
    border code=\pgfsetlinewidth{0.5pt}\pgfstroke,%
    border shrink=\pgfpageoptionborder,%
    resized width=.95\pgfphysicalwidth,%
    resized height=.95\pgfphysicalheight,%
    center=\pgfpoint{.5\pgfphysicalwidth}{.5\pgfphysicalheight}%
  }%
}

\pgfpagesuselayout{boxed}

答案1

我不确定这是否是一个答案,当然它与你的问题的具体内容无关,而是与一个更广泛的问题有关。

多年来,我为 TUGboat 写专栏,其中一篇专栏文章考虑在页面周围添加边框(https:/tug.org/TUGboat/tb32-2/tb101glister.pdf)。特别是其中的第 3 页显示了一个(花式)带边框的页面,而第 4 页显示\goddfoot了用于创建边框的宏。

相关内容