summaryrefslogtreecommitdiff
path: root/graphics/pgf/contrib/jigsaw/jigsaw-doc.tex
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/pgf/contrib/jigsaw/jigsaw-doc.tex')
-rw-r--r--graphics/pgf/contrib/jigsaw/jigsaw-doc.tex15
1 files changed, 8 insertions, 7 deletions
diff --git a/graphics/pgf/contrib/jigsaw/jigsaw-doc.tex b/graphics/pgf/contrib/jigsaw/jigsaw-doc.tex
index 9abda93205..18ff47f514 100644
--- a/graphics/pgf/contrib/jigsaw/jigsaw-doc.tex
+++ b/graphics/pgf/contrib/jigsaw/jigsaw-doc.tex
@@ -10,9 +10,6 @@
% Released under the LaTeX Project Public License v1.3c or later
% See http://www.latex-project.org/lppl.txt
%
-% Version 0.1a
-% NOv 9, 2018
-%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[parskip=half]{scrartcl}
@@ -98,7 +95,7 @@
\url{https://github.com/samcarter/jigsaw}\\
\url{https://www.ctan.org/pkg/jigsaw}
}{samcarter}}
-\date{Version v0.3 \textendash{} 2022/07/18}
+\date{Version v0.4 \textendash{} 2023/02/21}
\begin{document}
\maketitle
@@ -155,11 +152,15 @@ The piece shape is also available as \TikZ \verb|pic|:
\begin{tcblisting}{title={\texttt{pic}}}
\begin{tikzpicture}
\path (2,-3) pic[
- fill=lightgray,draw=teal,thick
+ fill=lightgray, draw=teal, ultra thick,
+ scale=2, pic text={Some Text},
+ pic text options={text=violet}
]{piece={1}{-1}{1}{0}};
\end{tikzpicture}
\end{tcblisting}
+Using the \TikZ \verb|pic| allows to apply various \TikZ option like \verb|scale| or add text in the centre of the piece via \verb|pic text={...}|.
+
The shapes of the jigsaw pieces are designed to seamlessly fit into each other which allows to produce tile patters in various ways:
\begin{tcblisting}{title={Manual tile pattern}}
@@ -187,7 +188,7 @@ The shapes of the jigsaw pieces are designed to seamlessly fit into each other w
{piece={1}{0}{0}{-1}};
\pic at (0,0) [fill=teal]
{piece={0}{-1}{-1}{0}};
-\pic at (1,0) [fill=lightgray]
+\pic at (1,0) [fill=lightgray,draw]
{piece={0}{0}{-1}{1}};
\end{tikzpicture}
\end{tcblisting}
@@ -196,7 +197,7 @@ The shapes of the jigsaw pieces are designed to seamlessly fit into each other w
% \usetikzlibrary{matrix}
\begin{tikzpicture}
\matrix [nodes=draw]{
-\pic [fill=lightgray]{piece={-1}{-1}{0}{0}};&
+\pic [fill=lightgray]{piece={-1}{1}{0}{0}};&
\pic [fill=teal]{piece={1}{0}{0}{-1}}; \\
\pic [fill=teal]{piece={0}{-1}{1}{0}}; &
\pic [fill=lightgray]{piece={0}{0}{-1}{1}};\\