答案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}
现在,您必须调整一些东西。我在这里没有使用neither \thesection
nor \thepage
,但您必须将其添加到节点声明中。
如果您想要奇数/偶数页,则必须使用 创建两个不同的代码\tpflip{<odd>}{<even>}
。如果您仍然对此感到困惑,请随时提出其他问题。