texlive[42874] Master/texmf-dist: lt3graph (5jan17)

commits+karl at tug.org commits+karl at tug.org
Thu Jan 5 23:59:56 CET 2017


Revision: 42874
          http://tug.org/svn/texlive?view=revision&revision=42874
Author:   karl
Date:     2017-01-05 23:59:55 +0100 (Thu, 05 Jan 2017)
Log Message:
-----------
lt3graph (5jan17)

Modified Paths:
--------------
    trunk/Master/texmf-dist/doc/latex/lt3graph/README
    trunk/Master/texmf-dist/doc/latex/lt3graph/lt3graph.pdf
    trunk/Master/texmf-dist/doc/latex/lt3graph/lt3graph.tex
    trunk/Master/texmf-dist/tex/latex/lt3graph/lt3graph.sty

Modified: trunk/Master/texmf-dist/doc/latex/lt3graph/README
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/latex/lt3graph/lt3graph.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/latex/lt3graph/lt3graph.tex
===================================================================
--- trunk/Master/texmf-dist/doc/latex/lt3graph/lt3graph.tex	2017-01-05 22:59:42 UTC (rev 42873)
+++ trunk/Master/texmf-dist/doc/latex/lt3graph/lt3graph.tex	2017-01-05 22:59:55 UTC (rev 42874)
@@ -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 @@
 	{ 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 @@
 
 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:
 

Modified: trunk/Master/texmf-dist/tex/latex/lt3graph/lt3graph.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/lt3graph/lt3graph.sty	2017-01-05 22:59:42 UTC (rev 42873)
+++ trunk/Master/texmf-dist/tex/latex/lt3graph/lt3graph.sty	2017-01-05 22:59:55 UTC (rev 42874)
@@ -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}
 %



More information about the tex-live-commits mailing list