summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/lt3graph
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2014-04-14 22:43:57 +0000
committerKarl Berry <karl@freefriends.org>2014-04-14 22:43:57 +0000
commitdf185b027a757604ac720858c2edffe2fb0c2155 (patch)
tree8f56542048065ee4aba58a2d9462d2ecc95fe7db /Master/texmf-dist/doc/latex/lt3graph
parentb44da9d0b33316bf5f6d5401ba7f78b219b3f401 (diff)
lt3graph (14apr14)
git-svn-id: svn://tug.org/texlive/trunk@33439 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/lt3graph')
-rw-r--r--Master/texmf-dist/doc/latex/lt3graph/README4
-rw-r--r--Master/texmf-dist/doc/latex/lt3graph/lt3graph.pdfbin559200 -> 560061 bytes
-rw-r--r--Master/texmf-dist/doc/latex/lt3graph/lt3graph.tex23
3 files changed, 17 insertions, 10 deletions
diff --git a/Master/texmf-dist/doc/latex/lt3graph/README b/Master/texmf-dist/doc/latex/lt3graph/README
index dc000a3790d..52a25fcaca5 100644
--- a/Master/texmf-dist/doc/latex/lt3graph/README
+++ b/Master/texmf-dist/doc/latex/lt3graph/README
@@ -1,9 +1,9 @@
latex-lt3graph
=============
-LaTeX Package : lt3graph 0.0.9-r1
+LaTeX Package : lt3graph 0.1.0
-Last Modified : 2013-12-07
+Last Modified : 2014-04-13
Author : Michiel Helvensteijn (www.mhelvens.net)
diff --git a/Master/texmf-dist/doc/latex/lt3graph/lt3graph.pdf b/Master/texmf-dist/doc/latex/lt3graph/lt3graph.pdf
index bde2ad5c201..5d3f5922909 100644
--- a/Master/texmf-dist/doc/latex/lt3graph/lt3graph.pdf
+++ b/Master/texmf-dist/doc/latex/lt3graph/lt3graph.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/lt3graph/lt3graph.tex b/Master/texmf-dist/doc/latex/lt3graph/lt3graph.tex
index 27c982f0d9c..f3e637870c9 100644
--- a/Master/texmf-dist/doc/latex/lt3graph/lt3graph.tex
+++ b/Master/texmf-dist/doc/latex/lt3graph/lt3graph.tex
@@ -1,6 +1,6 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \iffalse %%%%
% %
-% Copyright (c) 2013 - Michiel Helvensteijn (www.mhelvens.net) %
+% Copyright (c) 2013 - Michiel Helvensteijn - www.mhelvens.net %
% %
% https://github.com/mhelvens/latex-lt3graph %
% %
@@ -21,8 +21,9 @@
\documentclass[a4paper]{lt3graph-packagedoc}
-\usepackage {amssymb}
-\usepackage {tikz}
+\usepackage {amssymb}
+\usepackage {tikz}
+
\usetikzlibrary {matrix}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -80,6 +81,12 @@
\changes{0.0.9}{2013/12/07}
{creation of the documentation}
+\changes{0.1.0}{2014/04/13}
+ {fixed a bug in\\
+ \texttt{\textbackslash graph_(g)put_vertex} and\\
+ \texttt{\textbackslash graph_(g)put_edge},
+ which caused their global versions not to work properly}
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document} %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -92,9 +99,9 @@ This package provides a data-structure for use in the \LaTeX3 programming
environment. It allows you to represent a \emph{directed graph}, which
contains \emph{vertices} (nodes), and \emph{edges} (arrows) to
connect them.\footnote
- { Mathematically speaking, a directed graph is a tuple \( (V, E) \)
- with a set of vertices \( V \) and a set of edges \( E \subseteq V \times V \)
- connecting those vertices.}
+ { Mathematically speaking, a directed graph is a tuple
+ \( (V, E) \) with a set of vertices \( V \) and a set of edges
+ \( E \subseteq V \times V \) connecting those vertices. }
One such a graph is defined below:
\begin{latex-example}
@@ -239,7 +246,7 @@ The first generates the transitive closure of a graph:
\begin{latex-example-show}
\ExplSyntaxOn \centering
\graph_display_table:N \l_my_graph
- \( \ \rightsquigarrow\ \)
+ \(\ \ \rightsquigarrow\ \ \)
\graph_display_table:Nn \l_closed_graph
{ row_keys = false, vertex_vals = false }
\ExplSyntaxOff
@@ -265,7 +272,7 @@ The second transformation function generates the transitive reduction:
\begin{latex-example-show}
\ExplSyntaxOn \centering
\graph_display_table:N \l_my_graph
- \( \ \rightsquigarrow\ \)
+ \(\ \ \rightsquigarrow\ \ \)
\graph_display_table:Nn \l_reduced_graph
{ row_keys = false, vertex_vals = false }
\ExplSyntaxOff