Libro de páginas de encabezado en TikZ

Libro de páginas de encabezado en TikZ

¿Cómo puedo dibujar esta figura?

ingrese la descripción de la imagen aquí

ingrese la descripción de la imagen aquí

\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}

Respuesta1

No usaría el fondo en este caso. Mi propuesta es pegar la decoración en el comando que imprime el número de página y usar un tikzpicturecuadro delimitador controlado.

Lo siguiente es un comienzo: hice solo la parte superior, la inferior debería ser más fácil. Quité las cosas de Parsi (no tengo las fuentes).

\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}

Para obtener:

Parte superior de páginas simétricas

El truco aquí es la use as bounding boxcosa (puedes usarla scopesi necesitas más cosas) para que fancyhdrestés convencido de que el tamaño de la imagen es justo el tamaño del diamante con el número de página.

Obviamente también tuve que aumentar el tamaño del encabezado. El código debe limpiarse para no utilizar todas estas constantes, pero bueno, eso se deja como ejercicio para el lector...

actualice con una nueva forma --- esto muestra el uso de anclajes, así que creo que es bastante educativo... cambiando:

\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}%
}

Te regalaré:

ingrese la descripción de la imagen aquí

información relacionada