summaryrefslogtreecommitdiff
path: root/Master/texmf-dist
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r--Master/texmf-dist/doc/latex/lt3graph/README6
-rw-r--r--Master/texmf-dist/doc/latex/lt3graph/lt3graph.pdfbin587024 -> 587705 bytes
-rw-r--r--Master/texmf-dist/doc/latex/lt3graph/lt3graph.tex9
-rw-r--r--Master/texmf-dist/tex/latex/lt3graph/lt3graph.sty20
4 files changed, 19 insertions, 16 deletions
diff --git a/Master/texmf-dist/doc/latex/lt3graph/README b/Master/texmf-dist/doc/latex/lt3graph/README
index ce0eb6d44cc..2d9c4427053 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.1.5
+LaTeX Package : lt3graph 0.1.8
-Last Modified : 2016-03-30
+Last Modified : 2017-01-05
Author : Michiel Helvensteijn (www.mhelvens.net)
@@ -56,5 +56,5 @@ License
-------
This material is subject to the LaTeX Project Public License. See
-http://www.ctan.org/tex-archive/help/Catalogue/licenses.lppl.html
+http://mirror.ctan.org/help/Catalogue/Licenses.lppl.html
for the details of that license.
diff --git a/Master/texmf-dist/doc/latex/lt3graph/lt3graph.pdf b/Master/texmf-dist/doc/latex/lt3graph/lt3graph.pdf
index a1c4f67e8a4..54b1cbc7809 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 084bba4aab7..b9639731d1a 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) 2014 - Michiel Helvensteijn (www.mhelvens.net) %
+% Copyright (c) 2017 - Michiel Helvensteijn (www.mhelvens.net) %
% %
% https://github.com/mhelvens/latex-lt3graph %
% %
@@ -103,6 +103,9 @@
{no longer loading individual l3kernel packages, which leads to
an error for recent versions of expl3}
+\changes{0.1.8}{2017/01/05}
+ {tracking changes in expl3}
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document} %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -118,7 +121,7 @@ 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. }
-One such a graph is defined below:
+One such graph is defined below:
\begin{latex-example}
\ExplSyntaxOn
@@ -161,7 +164,7 @@ We could then, for example, use TikZ to draw this graph:
Just to be clear, this library is \emph{not about drawing} graphs.
It does not, inherently, understand any TikZ.
-It is about \emph{representing} graphs. This allows us do perform analysis
+It is about \emph{representing} graphs. This allows us to perform analysis
on their structure. We could, for example, determine if there is
a cycle in the graph:
diff --git a/Master/texmf-dist/tex/latex/lt3graph/lt3graph.sty b/Master/texmf-dist/tex/latex/lt3graph/lt3graph.sty
index 5122b60b4f3..5a97e8e7779 100644
--- a/Master/texmf-dist/tex/latex/lt3graph/lt3graph.sty
+++ b/Master/texmf-dist/tex/latex/lt3graph/lt3graph.sty
@@ -1,6 +1,6 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \iffalse %%%%
% %
-% Copyright (c) 2016 - Michiel Helvensteijn (www.mhelvens.net) %
+% Copyright (c) 2017 - Michiel Helvensteijn (www.mhelvens.net) %
% %
% https://github.com/mhelvens/latex-lt3graph %
% %
@@ -48,7 +48,7 @@
% \begin{macrocode}
\NeedsTeXFormat{LaTeX2e}
\RequirePackage{expl3}
-\ProvidesExplPackage{lt3graph}{2016/03/30}{0.1.5}
+\ProvidesExplPackage{lt3graph}{2017/01/05}{0.1.8}
{a LaTeX3 datastructure for representing directed graphs with data}
% \end{macrocode}
%
@@ -1560,35 +1560,35 @@
row_keys_format .tl_set:N = \l__graph_format_row_keys_tl,
row_keys_format .initial:n = \textbf,
- row_keys_format .value_required:,
+ row_keys_format .value_required:n = true,
col_keys_format .tl_set:N = \l__graph_format_col_keys_tl,
col_keys_format .initial:n = \textbf,
- col_keys_format .value_required:,
+ col_keys_format .value_required:n = true,
vertex_vals_format .tl_set:N = \l__graph_format_vertex_vals_tl,
vertex_vals_format .initial:n = \use:n,
- vertex_vals_format .value_required:,
+ vertex_vals_format .value_required:n = true,
edge_vals_format .tl_set:N = \l__graph_format_edge_vals_tl,
edge_vals_format .initial:n = \use:n,
- edge_vals_format .value_required:,
+ edge_vals_format .value_required:n = true,
edge_diagonal_format .tl_set:N = \l__graph_format_edge_diagonal_tl,
edge_diagonal_format .initial:n = \cellcolor{black!30!white},
- edge_diagonal_format .value_required:,
+ edge_diagonal_format .value_required:n = true,
edge_direct_format .tl_set:N = \l__graph_format_edge_direct_tl,
edge_direct_format .initial:n = \cellcolor{green},
- edge_direct_format .value_required:,
+ edge_direct_format .value_required:n = true,
edge_transitive_format .tl_set:N = \l__graph_format_edge_transitive_tl,
edge_transitive_format .initial:n = \cellcolor{green!40!yellow}\tiny(tr),
- edge_transitive_format .value_required:,
+ edge_transitive_format .value_required:n = true,
edge_none_format .tl_set:N = \l__graph_format_edge_none_tl,
edge_none_format .initial:n = {},
- edge_none_format .value_required:
+ edge_none_format .value_required:n = true
}
% \end{macrocode}
%