我怎样才能画出这个图形?
\documentclass[12pt]{book}
\usepackage[top=25mm,bottom=25mm,left=25mm,right=25mm]{geometry}
\usepackage[all]{background}
\usepackage{ptext,xcolor}
%\usepackage{showframe}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage{changepage}
\strictpagecheck
\usepackage{fancyhdr}
\fancyhf{}
\fancyhead[LO,RE]{\thepage}
\fancyhead[LE]{عنوان کتاب}
\fancyhead[RO]{\leftmark}
\renewcommand{\headrulewidth}{0pt}
\pagestyle{fancy}
\usepackage{xepersian}
\settextfont[Scale=1.2]{Yas}
\linespread{1.5}
\newcommand*{\vsp}{2cm}
\newcommand*{\hsp}{2.5cm}
\newcommand{\MyTikzLogo}{%
\begin{tikzpicture}[remember picture,overlay]
\checkoddpage
\ifoddpage
\draw [color=magenta,line width=1mm] ($(\paperwidth+\hsp,-\vsp)$) --($(\hsp,-\vsp)$);
\else
\draw [color=cyan,line width=1mm] ($(0,-\vsp)$) --($(\paperwidth-\hsp,-\vsp)$);
\fi
\end{tikzpicture}
}
\SetBgContents{\MyTikzLogo}
\SetBgPosition{current page.north west}
\SetBgOpacity{1.0}
\SetBgAngle{0.0}
\SetBgScale{1.0}
\begin{document}
\chapter{titel}
\section{sec }
\ptext[1-40]
\end{document}
答案1
在这种情况下,我不会使用背景。我的建议是将装饰粘贴在打印页码的命令中,并使用tikzpicture
带有受控边界框的。
以下是开始 --- 我只做了上半部分,下半部分应该更容易。我删除了 Parsi 的东西(我没有字体)。
\documentclass[12pt]{book}
\usepackage[top=25mm,bottom=25mm,left=25mm,right=25mm,
headheight=40pt]{geometry}
\usepackage{xcolor}
\usepackage{lipsum}
\usepackage{tikz}
\usetikzlibrary{calc, shapes.geometric}
\usepackage{changepage}
\strictpagecheck
\usepackage{fancyhdr}
\fancyhf{}
\fancyhead[LO,RE]{\myfancynum}
\fancyhead[LE]{book title}
\fancyhead[RO]{\leftmark}
\renewcommand{\headrulewidth}{0pt}
\pagestyle{fancy}
\linespread{1.5}
\newcommand{\myfancynum}{%
\begin{tikzpicture}
\path (0,0) [use as bounding box]
node[diamond, draw=cyan, inner sep=0pt, minimum size=32pt] (pageno) {\thepage} ;
\checkoddpage\ifoddpage
% 36pt = 32pt + 4pt +4pt;
\path (pageno.west) node[fill=cyan, fill opacity=0.4, diamond, inner sep=0pt, minimum size=16pt] {};
\draw[cyan] (pageno.north) ++(0, +4pt) -- ++(40pt, -40pt) -- ++(\linewidth,0);
\draw[cyan] (pageno.east) ++(4pt, 0) -- ++(-40pt, -40pt) -- ++(0, -4cm);
\else
\path (pageno.east) node[fill=cyan, fill opacity=0.4, diamond, inner sep=0pt, minimum size=16pt] {};
\draw[cyan] (pageno.north) ++(0, +4pt) -- ++(-40pt, -40pt) -- ++(-\linewidth,0);
\draw[cyan] (pageno.west) ++(-4pt, 0) -- ++(40pt, -40pt) -- ++(0, -4cm);
\fi
\end{tikzpicture}%
}
\begin{document}
\chapter{A chapter}
\section{A section}
\lipsum[1-40]
\end{document}
获得方法:
这里的诀窍是use as bounding box
(如果您需要更多的东西,可以在 a 中使用它scope
)以便fancyhdr
确信图片的大小只是带有页码的菱形的大小。
显然,我也必须增加标头的大小。应该清理代码,以免使用所有这些常量,但是,这留给读者练习吧……
用新的形状更新 --- 这展示了锚点的使用,所以我认为它很有教育意义...改变:
\newcommand{\myfancynum}{%
\begin{tikzpicture}
% this trick is used to have the bounding box centered on the number, but
% the real drawing (the star) hanging down (thanks to anchor=north).
% By default, fancyhdr will line the baseline of this graph (that for it is
% just the pagenumber) to the chapter-section-title whatever info it prints in
% the header.
% To see how fancyhdr lines up things, change this \path to a \draw
\path [use as bounding box] (-16pt,16pt) rectangle (16pt,-16pt);
\path node[star, star points=8, star point ratio=1.3, draw=cyan,
inner sep=0pt, minimum size=32pt, anchor=north] (pageno) {\thepage} ;
\checkoddpage\ifoddpage
% line lengths are adjusted by hand. Probably a bit of math could fix this, but well...
\path (pageno.west) node[fill=cyan, fill opacity=0.4, diamond, inner sep=0pt, minimum size=16pt] {};
\draw[cyan] (pageno.inner point 7) -- ++(44pt,0);
\draw[cyan] (pageno.east) -- ++(+40pt, 0) -- ++(4pt,-4pt) -- ++({\linewidth-48pt},0);
\draw[cyan] (pageno.outer point 6) -- ++(\linewidth,0);
\draw[cyan] (pageno.west) -- ++(-8pt, -8pt) -- ++(0, -4cm);
\else
\path (pageno.east) node[fill=cyan, fill opacity=0.4, diamond, inner sep=0pt, minimum size=16pt] {};
\draw[cyan] (pageno.inner point 2) -- ++(-44pt,0);
\draw[cyan] (pageno.west) -- ++(-40pt, 0) -- ++(-4pt,-4pt) -- ++({-\linewidth+48pt},0);
\draw[cyan] (pageno.outer point 4) -- ++(-\linewidth,0);
\draw[cyan] (pageno.east) -- ++(+8pt, -8pt) -- ++(0, -4cm);
\fi
\end{tikzpicture}%
}
会给你: