summaryrefslogtreecommitdiff
path: root/graphics/pgf/contrib/tikz-layers
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /graphics/pgf/contrib/tikz-layers
Initial commit
Diffstat (limited to 'graphics/pgf/contrib/tikz-layers')
-rw-r--r--graphics/pgf/contrib/tikz-layers/README21
-rw-r--r--graphics/pgf/contrib/tikz-layers/manifest.txt2
-rw-r--r--graphics/pgf/contrib/tikz-layers/tikz-layers-doc.pdfbin0 -> 66931 bytes
-rw-r--r--graphics/pgf/contrib/tikz-layers/tikz-layers.sty34
4 files changed, 57 insertions, 0 deletions
diff --git a/graphics/pgf/contrib/tikz-layers/README b/graphics/pgf/contrib/tikz-layers/README
new file mode 100644
index 0000000000..8b259f82bf
--- /dev/null
+++ b/graphics/pgf/contrib/tikz-layers/README
@@ -0,0 +1,21 @@
+LaTeX package: tikz-layers
+
+Enables extra (and useful) layers for pgf/tikz graphics.
+
+Dependencies: TikZ package
+
+Copyright 2018 Rui Moutinho
+
+This work may be distributed and/or modified under the
+conditions of the LaTeX Project Public License, either version 1.3
+of this license or (at your option) any later version.
+The latest version of this license is in
+ http://www.latex-project.org/lppl.txt
+and version 1.3 or later is part of all distributions of LaTeX
+version 2005/12/01 or later.
+
+This work has the LPPL maintenance status `maintained'.
+
+The Current Maintainer of this work is Rui Moutinho.
+
+Contact: rumout@gmail.com \ No newline at end of file
diff --git a/graphics/pgf/contrib/tikz-layers/manifest.txt b/graphics/pgf/contrib/tikz-layers/manifest.txt
new file mode 100644
index 0000000000..127655df78
--- /dev/null
+++ b/graphics/pgf/contrib/tikz-layers/manifest.txt
@@ -0,0 +1,2 @@
+tikz-layers.sty
+tikz-layers-doc.pdf
diff --git a/graphics/pgf/contrib/tikz-layers/tikz-layers-doc.pdf b/graphics/pgf/contrib/tikz-layers/tikz-layers-doc.pdf
new file mode 100644
index 0000000000..65253cb0a1
--- /dev/null
+++ b/graphics/pgf/contrib/tikz-layers/tikz-layers-doc.pdf
Binary files differ
diff --git a/graphics/pgf/contrib/tikz-layers/tikz-layers.sty b/graphics/pgf/contrib/tikz-layers/tikz-layers.sty
new file mode 100644
index 0000000000..169556156e
--- /dev/null
+++ b/graphics/pgf/contrib/tikz-layers/tikz-layers.sty
@@ -0,0 +1,34 @@
+%% tikz-layers.sty
+%% Copyright 2018 Rui Moutinho
+%
+% This work may be distributed and/or modified under the
+% conditions of the LaTeX Project Public License, either version 1.3
+% of this license or (at your option) any later version.
+% The latest version of this license is in
+% http://www.latex-project.org/lppl.txt
+% and version 1.3 or later is part of all distributions of LaTeX
+% version 2005/12/01 or later.
+%
+% This work has the LPPL maintenance status `maintained'.
+%
+% The Current Maintainer of this work is Rui Moutinho.
+%
+% This work consists of the files listed on manifest.txt.
+
+\ProvidesPackage{tikz-layers}[2018/02/15 v0.9 Installs basic layers via TikZ]
+
+\RequirePackage{tikz}
+\usetikzlibrary{backgrounds}
+
+\pgfdeclarelayer{behind}
+\pgfdeclarelayer{above}
+\pgfdeclarelayer{glass}
+
+\pgfsetlayers{background,behind,main,above,glass}
+
+\tikzset{
+ on layer/.style = {execute at begin scope={\pgfonlayer{#1}}, execute at end scope={\endpgfonlayer}},
+ on behind layer/.style = {on layer=behind},
+ on above layer/.style = {on layer=above},
+ on glass layer/.style = {on layer=glass},
+}