绘制页面边框

绘制页面边框

你能帮我吗?如何制作像这样带有章节名称和页码的边框和垂直矩形。谢谢

第 1 页

答案1

这是一个粗略的例子,向您展示如何使用tkz-page

\documentclass{article}
\usepackage{tikz-page}
\usepackage{lipsum}
\usetikzlibrary{shadows.blur}
    
\tikzset{
        secnode/.style={
                minimum height=1cm,
                inner xsep=20pt,
                rotate=90,
                anchor=north east,
                draw=white,
                fill=olive,
                text=white,
                blur shadow={shadow blur steps=5,shadow blur extra rounding=1.3pt}},
        pagenode/.style={
                minimum width=5mm,
                minimum height=1cm,
                inner sep=2pt,
                anchor=south east,
                draw=white,
                fill=olive,
                text=white,
                blur shadow={shadow blur steps=5,shadow blur extra rounding=1.3pt}}
        }
\newcommand{\tikzpagelayout}{
        \draw[olive,line width=2pt,rounded corners=20pt] ([xshift=5mm]page.northwest) |- ([xshift=-2cm,yshift=5mm]page.southeast);
        \node[secnode] at (page.northwest) {Chapitre 05.\quad FONCTIONS LOGARTITHMES};
        \node[pagenode] at ([xshift=-1cm]page.southeast) {1};
      }
         
\pagestyle{plain}
\begin{document}
    \lipsum[1-3]
\end{document}

生成结果: tkz-页面

现在,您必须调整一些东西。我在这里没有使用neither \thesectionnor \thepage,但您必须将其添加到节点声明中。

如果您想要奇数/偶数页,则必须使用 创建两个不同的代码\tpflip{<odd>}{<even>}。如果您仍然对此感到困惑,请随时提出其他问题。

相关内容