texlive[66283] branches/branch2022.final/Master/texmf-dist: eolang

commits+karl at tug.org commits+karl at tug.org
Wed Mar 1 22:06:34 CET 2023


Revision: 66283
          http://tug.org/svn/texlive?view=revision&revision=66283
Author:   karl
Date:     2023-03-01 22:06:33 +0100 (Wed, 01 Mar 2023)
Log Message:
-----------
eolang (1mar23) (branch)

Modified Paths:
--------------
    branches/branch2022.final/Master/texmf-dist/doc/latex/eolang/eolang.pdf
    branches/branch2022.final/Master/texmf-dist/source/latex/eolang/eolang.dtx
    branches/branch2022.final/Master/texmf-dist/tex/latex/eolang/eolang.sty

Modified: branches/branch2022.final/Master/texmf-dist/doc/latex/eolang/eolang.pdf
===================================================================
(Binary files differ)

Modified: branches/branch2022.final/Master/texmf-dist/source/latex/eolang/eolang.dtx
===================================================================
--- branches/branch2022.final/Master/texmf-dist/source/latex/eolang/eolang.dtx	2023-03-01 21:06:21 UTC (rev 66282)
+++ branches/branch2022.final/Master/texmf-dist/source/latex/eolang/eolang.dtx	2023-03-01 21:06:33 UTC (rev 66283)
@@ -50,7 +50,7 @@
 %<package>\NeedsTeXFormat{LaTeX2e}
 %<package>\ProvidesPackage{eolang}
 %<*package>
-[2023-02-09 0.12.0 Formulas and Graphs for EO Programming Language]
+[2023-03-01 0.12.1 Formulas and Graphs for EO Programming Language]
 %</package>
 %<*driver>
 \documentclass{ltxdoc}
@@ -677,11 +677,11 @@
 % \begin{document}
 % \begin{sodg}
 % v0
-% v1 xy:v0,-1,1 \\ v0->v1
-% v2 xy:v0,0,1 \\ v0->v2
-% v3 xy:v0,1,1 \\ v0->v3
+% v11 xy:v0,-1,1 \\ v0->v11
+% v12 xy:v0,0,1 \\ v0->v12
+% v13 xy:v0,1,1 \\ v0->v13
 % \node[draw=red,rounded corners,\
-%  dotted,fit=(v1) (v2)] {};
+%  dotted,fit=(v11) (v12)] {};
 % \end{sodg}
 % \end{document}
 % \end{docshot}
@@ -783,7 +783,7 @@
 $macro = $ARGV[0];
 open(my $fh, '<', $ARGV[1]);
 my $tex; { local $/; $tex = <$fh>; }
-print "% This file is auto-generated by 0.12.0\n";
+print "% This file is auto-generated by 0.12.1\n";
 print '% There are ', length($tex),
   ' chars in the input: ', $ARGV[1], "\n";
 print '% ---', "\n";
@@ -1051,6 +1051,7 @@
 % \changes{0.5.0}{2022/11/12}{It is possible to use TikZ commands inside the \texttt{sodg} environment.}
 % \changes{0.6.0}{2022/11/13}{The \texttt{rrho} attribute is retired, now \texttt{rho} works just fine in all situations.}
 % \changes{0.8.0}{2022/11/20}{The \texttt{tag} attribute is introduced for changing labels inside a vertex circle.}
+% \changes{0.12.1}{2023/03/01}{The bug is fixed related to the formatting of indexes of vertices.}
 % Then, we create a Perl script for |sodg| graphs processing using |VerbatimOut| from
 % \href{https://ctan.org/pkg/fancyvrb}{fancyvrb}:
 %    \begin{macrocode}
@@ -1071,9 +1072,9 @@
   if (index($v, 'v0') == 0) {
     return '\Phi';
   } else {
-    $v =~ s/^v/v_/g;
+    $v =~ s/^v/v_{/g;
     $v =~ s/[^0-9]$//g;
-    return $v;
+    return $v . '}';
   }
 }
 sub tailor {

Modified: branches/branch2022.final/Master/texmf-dist/tex/latex/eolang/eolang.sty
===================================================================
--- branches/branch2022.final/Master/texmf-dist/tex/latex/eolang/eolang.sty	2023-03-01 21:06:21 UTC (rev 66282)
+++ branches/branch2022.final/Master/texmf-dist/tex/latex/eolang/eolang.sty	2023-03-01 21:06:33 UTC (rev 66283)
@@ -31,7 +31,7 @@
 
 \NeedsTeXFormat{LaTeX2e}
 \ProvidesPackage{eolang}
-[2023-02-09 0.12.0 Formulas and Graphs for EO Programming Language]
+[2023-03-01 0.12.1 Formulas and Graphs for EO Programming Language]
 
 
 
@@ -111,7 +111,7 @@
 $macro = $ARGV[0];
 open(my $fh, '<', $ARGV[1]);
 my $tex; { local $/; $tex = <$fh>; }
-print "% This file is auto-generated by 0.12.0\n";
+print "% This file is auto-generated by 0.12.1\n";
 print '% There are ', length($tex),
   ' chars in the input: ', $ARGV[1], "\n";
 print '% ---', "\n";
@@ -355,9 +355,9 @@
   if (index($v, 'v0') == 0) {
     return '\Phi';
   } else {
-    $v =~ s/^v/v_/g;
+    $v =~ s/^v/v_{/g;
     $v =~ s/[^0-9]$//g;
-    return $v;
+    return $v . '}';
   }
 }
 sub tailor {



More information about the tex-live-commits mailing list.