texlive[52602] Master/texmf-dist: halloweenmath (1nov19)

commits+karl at tug.org commits+karl at tug.org
Fri Nov 1 21:59:13 CET 2019


Revision: 52602
          http://tug.org/svn/texlive?view=revision&revision=52602
Author:   karl
Date:     2019-11-01 21:59:13 +0100 (Fri, 01 Nov 2019)
Log Message:
-----------
halloweenmath (1nov19)

Modified Paths:
--------------
    trunk/Master/texmf-dist/doc/latex/halloweenmath/00readme.txt
    trunk/Master/texmf-dist/doc/latex/halloweenmath/README
    trunk/Master/texmf-dist/doc/latex/halloweenmath/halloweenmath-doc.pdf
    trunk/Master/texmf-dist/doc/latex/halloweenmath/halloweenmath-man.pdf
    trunk/Master/texmf-dist/doc/latex/halloweenmath/halloweenmath-man.tex
    trunk/Master/texmf-dist/doc/latex/halloweenmath/manifest.txt
    trunk/Master/texmf-dist/source/latex/halloweenmath/halloweenmath.dtx
    trunk/Master/texmf-dist/source/latex/halloweenmath/halloweenmath.ins
    trunk/Master/texmf-dist/tex/latex/halloweenmath/halloweenmath.sty

Added Paths:
-----------
    trunk/Master/texmf-dist/source/latex/halloweenmath/Makefile

Removed Paths:
-------------
    trunk/Master/texmf-dist/doc/latex/halloweenmath/Makefile

Modified: trunk/Master/texmf-dist/doc/latex/halloweenmath/00readme.txt
===================================================================
--- trunk/Master/texmf-dist/doc/latex/halloweenmath/00readme.txt	2019-11-01 20:58:55 UTC (rev 52601)
+++ trunk/Master/texmf-dist/doc/latex/halloweenmath/00readme.txt	2019-11-01 20:59:13 UTC (rev 52602)
@@ -4,7 +4,7 @@
 
 This file is part of a work named "halloweenmath package".
 
-Copyright (C) 2017 by Gustavo MEZZETTI.
+Copyright (C) 2019 by Gustavo MEZZETTI.
 
 The halloweenmath package may be distributed and/or modified under
 the conditions of the LaTeX Project Public License, either version 1.3
@@ -26,7 +26,7 @@
 package, explains how to install it and how to generate its--alas, still
 incomplete!--documentation.
 
-April 25, 2017 (vers. 0.10a)
+November 1, 2019 (vers. 0.11)
 
 
 

Deleted: trunk/Master/texmf-dist/doc/latex/halloweenmath/Makefile
===================================================================
--- trunk/Master/texmf-dist/doc/latex/halloweenmath/Makefile	2019-11-01 20:58:55 UTC (rev 52601)
+++ trunk/Master/texmf-dist/doc/latex/halloweenmath/Makefile	2019-11-01 20:59:13 UTC (rev 52602)
@@ -1,147 +0,0 @@
-# makefile
-#
-# 2017 Apr 25
-#
-# Macro definitions
-#
-# - parameters:
-ROOT_NAME	= halloweenmath
-#   (the following need not be redefined, although it can be)
-BUNDLE_NAME	= $(ROOT_NAME) package
-#
-# - all the rest:
-DTX_NAME	= $(ROOT_NAME).dtx
-INS_NAME	= $(ROOT_NAME).ins
-LOG_FILE	= $(ROOT_NAME).log
-DOC_AUX_FIL	= $(LOG_FILE) $(ROOT_NAME).aux \
-				$(ROOT_NAME).glo $(ROOT_NAME).gls \
-				$(ROOT_NAME).idx $(ROOT_NAME).ind \
-				$(ROOT_NAME).ilg $(ROOT_NAME).glg \
-				$(ROOT_NAME).toc $(ROOT_NAME).lof \
-				$(ROOT_NAME).hd  $(ROOT_NAME).out
-DOCUM_FILE	= $(ROOT_NAME).pdf
-CODE_FILES	= $(ROOT_NAME).sty
-#
-LATEX		= pdflatex
-MAKEINDEX	= makeindex
-REMOVE		= -rm
-
-#
-define GEN_FAKE_INDEX
-	@echo '\\begin{theindex}' > $(ROOT_NAME).ind
-	@echo '\\end{theindex}'  >> $(ROOT_NAME).ind
-	@echo "Generating fake .ind file."
-endef
-#
-define GEN_FAKE_GLOSSARY
-	@echo '\\begin{theglossary}' > $(ROOT_NAME).gls
-	@echo '\\end{theglossary}'  >> $(ROOT_NAME).gls
-	@echo "Generating fake .gls file."
-endef
-
-
-
-.PHONY: default
-.PHONY: code doc
-.PHONY: clean cleandoc cleanaux cleancode cleanlog cleanall
-.PHONY: help
-
-# Default target
-default: doc code
-
-# Generating the code
-################################################################
-#                                                              #
-#   PLEASE NOTE THAT THE INSTALLER SCRIPT IS EXECUTED WITH     #
-#       openout_any=r                                          #
-#                                                              #
-################################################################
-code:
-	openout_any=r tex $(INS_NAME)
-
-# Generating the documentation
-doc: $(DOCUM_FILE)
-
-$(DOCUM_FILE): $(DTX_NAME)
-# Hack for getting index and glossary in the toc since first run:
-	$(GEN_FAKE_INDEX)
-	$(GEN_FAKE_GLOSSARY)
-# We know how many runs are needed:
-	$(LATEX) $(DTX_NAME)
-	$(LATEX) $(DTX_NAME)
-	$(MAKEINDEX) -s gind.ist -t $(ROOT_NAME).ilg -o $(ROOT_NAME).ind \
-			$(ROOT_NAME).idx
-	$(MAKEINDEX) -s gglo.ist -t $(ROOT_NAME).glg -o $(ROOT_NAME).gls \
-			$(ROOT_NAME).glo
-	$(LATEX) $(DTX_NAME)
-	$(LATEX) $(DTX_NAME)
-# Hyperlinks in the indexes seem not to work properly without the
-# following additional run:
-	$(MAKEINDEX) -s gind.ist -t $(ROOT_NAME).ilg -o $(ROOT_NAME).ind \
-			$(ROOT_NAME).idx
-	$(MAKEINDEX) -s gglo.ist -t $(ROOT_NAME).glg -o $(ROOT_NAME).gls \
-			$(ROOT_NAME).glo
-	$(LATEX) $(DTX_NAME)
-
-# Cleaning up: command "make clean" defaults to "make cleanall"
-clean: cleanall
-
-# Cleaning the code files
-cleancode:
-	$(REMOVE) $(CODE_FILES)
-
-# Cleaning the documentation files
-cleandoc: cleanaux
-	$(REMOVE) $(DOCUM_FILE)
-
-# Cleaning just the auxiliary files used in producing the documentation
-cleanaux:
-	$(REMOVE) $(DOC_AUX_FIL)
-
-# Cleaning only the transcript file (e.g., after "make code")
-cleanlog:
-	$(REMOVE) $(LOG_FILE)
-
-# Cleaning up all the generated files
-cleanall: cleancode cleandoc
-
-# Giving help
-help:
-	@echo "Here is a list of the available commands:"
-	@echo
-	@echo "  make"
-	@echo "    Generate both the code and the documentation (see below)."
-	@echo
-	@echo "  make code"
-	@echo "    Generate all the LaTeX \"executables\" (e.g., \`.sty' files)"
-	@echo "    of the $(BUNDLE_NAME);"
-	@echo "    these files go into the LaTeX input directories."
-	@echo
-	@echo "  make doc"
-	@echo "    Generate the documentation (in PDF); the resulting PDF file"
-	@echo "    goes into the LaTeX documentation directories (the auxiliary"
-	@echo "    files may be discarded)."
-	@echo
-	@echo "  make clean"
-	@echo "  make cleanall"
-	@echo "    These two commands are synonyms; they remove all of the"
-	@echo "    generated files (both code and documentation)."
-	@echo
-	@echo "  make cleancode"
-	@echo "    Remove the LaTeX source files (the \"code files\")."
-	@echo
-	@echo "  make cleandoc"
-	@echo "    Remove the documentation, together with all the auxiliary"
-	@echo "    files used to generate it."
-	@echo
-	@echo "  make cleanaux"
-	@echo "    Remove only the auxiliary files used to generate the"
-	@echo "    documentation."
-	@echo
-	@echo "  make cleanlog"
-	@echo "    Remove just the transcript file (e.g., after \"make doc\")."
-	@echo
-	@echo "  make help"
-	@echo "    Print this help message."
-	@echo
-

Modified: trunk/Master/texmf-dist/doc/latex/halloweenmath/README
===================================================================
--- trunk/Master/texmf-dist/doc/latex/halloweenmath/README	2019-11-01 20:58:55 UTC (rev 52601)
+++ trunk/Master/texmf-dist/doc/latex/halloweenmath/README	2019-11-01 20:59:13 UTC (rev 52602)
@@ -1,4 +1,4 @@
-(Version indicator: 2017 Apr 25)
+(Version indicator: 2019 Nov 01)
 
 The halloweenmath package originated from a question asked for enjoyment
 on TeX-LaTeX Stack Exchange <http://tex.stackexchange.com> by the user

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

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

Modified: trunk/Master/texmf-dist/doc/latex/halloweenmath/halloweenmath-man.tex
===================================================================
--- trunk/Master/texmf-dist/doc/latex/halloweenmath/halloweenmath-man.tex	2019-11-01 20:58:55 UTC (rev 52601)
+++ trunk/Master/texmf-dist/doc/latex/halloweenmath/halloweenmath-man.tex	2019-11-01 20:59:13 UTC (rev 52602)
@@ -1,13 +1,13 @@
 \documentclass[a4paper]{article}
 \usepackage[T1]{fontenc}
 \usepackage{amsmath,amsfonts}
-\usepackage{halloweenmath}[2017/04/16]
+\usepackage{halloweenmath}[2019/11/01]
 \usepackage{array}
 \usepackage[bookmarksnumbered]{hyperref}
 
 \title{User's manual\\for the \halloweenmath\ package}
 \author{G. Mezzetti}
-\date{April~25, 2017}
+\date{November~1, 2019}
 
 \hypersetup{
 	pdftitle        = {User's manual for the halloweenmath package},
@@ -14,8 +14,8 @@
 	pdfauthor       = {G. Mezzetti},
 	pdfsubject      = {The halloweenmath LaTeX package},
 	pdfkeywords     = {TeX,LaTeX,Halloween,math,math symbold},
-	pdfcreationdate = {D:20170425120000},
-	pdfmoddate      = {D:20170425120000}
+	pdfcreationdate = {D:20191101120000},
+	pdfmoddate      = {D:20191101120000}
 }
 
 \DeclareTextFontCommand{\packlass}{\normalfont\sffamily}
@@ -31,7 +31,7 @@
 \newcolumntype{H}[3]{>{\hb at xt@ #3\bgroup#1}c<{#2\egroup}}
 \newcolumntype{U}[2]{H{\hss$#1}{$\hss}{#2}@{\hspace{.5em}}}
 \newcolumntype{V}[1]{H{\ttfamily}{\hss}{#1}}
-\newcolumntype{W}[1]{H{}{\hss}{#1}}
+\newcolumntype{Q}[1]{H{}{\hss}{#1}}
 \newcolumntype{O}{U{}{15\p@}}
 \newcolumntype{D}{U{\displaystyle}{30\p@}}
 \newcolumntype{L}{OD}
@@ -60,7 +60,7 @@
 }
 \newenvironment{xasymtable}[1][\tw@]{%
 	\def\arraystretch{\tw@}%
-	\@symtable{AW{200\p@}}{#1}%
+	\@symtable{AQ{200\p@}}{#1}%
 }{%
 	\end at symtable
 }

Modified: trunk/Master/texmf-dist/doc/latex/halloweenmath/manifest.txt
===================================================================
--- trunk/Master/texmf-dist/doc/latex/halloweenmath/manifest.txt	2019-11-01 20:58:55 UTC (rev 52601)
+++ trunk/Master/texmf-dist/doc/latex/halloweenmath/manifest.txt	2019-11-01 20:59:13 UTC (rev 52602)
@@ -3,7 +3,7 @@
 
 This file is part of a work named "halloweenmath package".
 
-Copyright (C) 2017 by Gustavo MEZZETTI.
+Copyright (C) 2019 by Gustavo MEZZETTI.
 
 The halloweenmath package may be distributed and/or modified under
 the conditions of the LaTeX Project Public License, either version 1.3
@@ -21,7 +21,7 @@
 used in the LaTeX Project Public License, are to be interpreted in the
 case of this work.
 
-April 25, 2017 (vers. 0.10a)
+November 1, 2019 (vers. 0.11)
 
 
 

Added: trunk/Master/texmf-dist/source/latex/halloweenmath/Makefile
===================================================================
--- trunk/Master/texmf-dist/source/latex/halloweenmath/Makefile	                        (rev 0)
+++ trunk/Master/texmf-dist/source/latex/halloweenmath/Makefile	2019-11-01 20:59:13 UTC (rev 52602)
@@ -0,0 +1,147 @@
+# makefile
+#
+# 2019 Nov 01
+#
+# Macro definitions
+#
+# - parameters:
+ROOT_NAME	= halloweenmath
+#   (the following need not be redefined, although it can be)
+BUNDLE_NAME	= $(ROOT_NAME) package
+#
+# - all the rest:
+DTX_NAME	= $(ROOT_NAME).dtx
+INS_NAME	= $(ROOT_NAME).ins
+LOG_FILE	= $(ROOT_NAME).log
+DOC_AUX_FIL	= $(LOG_FILE) $(ROOT_NAME).aux \
+				$(ROOT_NAME).glo $(ROOT_NAME).gls \
+				$(ROOT_NAME).idx $(ROOT_NAME).ind \
+				$(ROOT_NAME).ilg $(ROOT_NAME).glg \
+				$(ROOT_NAME).toc $(ROOT_NAME).lof \
+				$(ROOT_NAME).hd  $(ROOT_NAME).out
+DOCUM_FILE	= $(ROOT_NAME).pdf
+CODE_FILES	= $(ROOT_NAME).sty
+#
+LATEX		= pdflatex
+MAKEINDEX	= makeindex
+REMOVE		= -rm
+
+#
+define GEN_FAKE_INDEX
+	@echo '\\begin{theindex}' > $(ROOT_NAME).ind
+	@echo '\\end{theindex}'  >> $(ROOT_NAME).ind
+	@echo "Generating fake .ind file."
+endef
+#
+define GEN_FAKE_GLOSSARY
+	@echo '\\begin{theglossary}' > $(ROOT_NAME).gls
+	@echo '\\end{theglossary}'  >> $(ROOT_NAME).gls
+	@echo "Generating fake .gls file."
+endef
+
+
+
+.PHONY: default
+.PHONY: code doc
+.PHONY: clean cleandoc cleanaux cleancode cleanlog cleanall
+.PHONY: help
+
+# Default target
+default: doc code
+
+# Generating the code
+################################################################
+#                                                              #
+#   PLEASE NOTE THAT THE INSTALLER SCRIPT IS EXECUTED WITH     #
+#       openout_any=r                                          #
+#                                                              #
+################################################################
+code:
+	openout_any=r tex $(INS_NAME)
+
+# Generating the documentation
+doc: $(DOCUM_FILE)
+
+$(DOCUM_FILE): $(DTX_NAME)
+# Hack for getting index and glossary in the toc since first run:
+	$(GEN_FAKE_INDEX)
+	$(GEN_FAKE_GLOSSARY)
+# We know how many runs are needed:
+	$(LATEX) $(DTX_NAME)
+	$(LATEX) $(DTX_NAME)
+	$(MAKEINDEX) -s gind.ist -t $(ROOT_NAME).ilg -o $(ROOT_NAME).ind \
+			$(ROOT_NAME).idx
+	$(MAKEINDEX) -s gglo.ist -t $(ROOT_NAME).glg -o $(ROOT_NAME).gls \
+			$(ROOT_NAME).glo
+	$(LATEX) $(DTX_NAME)
+	$(LATEX) $(DTX_NAME)
+# Hyperlinks in the indexes seem not to work properly without the
+# following additional run:
+	$(MAKEINDEX) -s gind.ist -t $(ROOT_NAME).ilg -o $(ROOT_NAME).ind \
+			$(ROOT_NAME).idx
+	$(MAKEINDEX) -s gglo.ist -t $(ROOT_NAME).glg -o $(ROOT_NAME).gls \
+			$(ROOT_NAME).glo
+	$(LATEX) $(DTX_NAME)
+
+# Cleaning up: command "make clean" defaults to "make cleanall"
+clean: cleanall
+
+# Cleaning the code files
+cleancode:
+	$(REMOVE) $(CODE_FILES)
+
+# Cleaning the documentation files
+cleandoc: cleanaux
+	$(REMOVE) $(DOCUM_FILE)
+
+# Cleaning just the auxiliary files used in producing the documentation
+cleanaux:
+	$(REMOVE) $(DOC_AUX_FIL)
+
+# Cleaning only the transcript file (e.g., after "make code")
+cleanlog:
+	$(REMOVE) $(LOG_FILE)
+
+# Cleaning up all the generated files
+cleanall: cleancode cleandoc
+
+# Giving help
+help:
+	@echo "Here is a list of the available commands:"
+	@echo
+	@echo "  make"
+	@echo "    Generate both the code and the documentation (see below)."
+	@echo
+	@echo "  make code"
+	@echo "    Generate all the LaTeX \"executables\" (e.g., \`.sty' files)"
+	@echo "    of the $(BUNDLE_NAME);"
+	@echo "    these files go into the LaTeX input directories."
+	@echo
+	@echo "  make doc"
+	@echo "    Generate the documentation (in PDF); the resulting PDF file"
+	@echo "    goes into the LaTeX documentation directories (the auxiliary"
+	@echo "    files may be discarded)."
+	@echo
+	@echo "  make clean"
+	@echo "  make cleanall"
+	@echo "    These two commands are synonyms; they remove all of the"
+	@echo "    generated files (both code and documentation)."
+	@echo
+	@echo "  make cleancode"
+	@echo "    Remove the LaTeX source files (the \"code files\")."
+	@echo
+	@echo "  make cleandoc"
+	@echo "    Remove the documentation, together with all the auxiliary"
+	@echo "    files used to generate it."
+	@echo
+	@echo "  make cleanaux"
+	@echo "    Remove only the auxiliary files used to generate the"
+	@echo "    documentation."
+	@echo
+	@echo "  make cleanlog"
+	@echo "    Remove just the transcript file (e.g., after \"make doc\")."
+	@echo
+	@echo "  make help"
+	@echo "    Print this help message."
+	@echo
+


Property changes on: trunk/Master/texmf-dist/source/latex/halloweenmath/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Modified: trunk/Master/texmf-dist/source/latex/halloweenmath/halloweenmath.dtx
===================================================================
--- trunk/Master/texmf-dist/source/latex/halloweenmath/halloweenmath.dtx	2019-11-01 20:58:55 UTC (rev 52601)
+++ trunk/Master/texmf-dist/source/latex/halloweenmath/halloweenmath.dtx	2019-11-01 20:59:13 UTC (rev 52602)
@@ -5,7 +5,7 @@
 %
 %   This file is part of a work named "halloweenmath package".
 %
-%   Copyright (C) 2017 by Gustavo MEZZETTI.
+%   Copyright (C) 2019 by Gustavo MEZZETTI.
 %
 %   This file may be distributed and/or modified under the conditions
 %   of the LaTeX Project Public License, either version 1.3 of this
@@ -32,12 +32,12 @@
 % \fi
 %
 % \def\filename{halloweenmath.dtx}
-% \def\fileversion{0.10a}
-% \def\filedate{2017/04/25}
-% \def\docdate {2017/04/25}
-% \def\doclongdate{April~25, 2017}
+% \def\fileversion{0.11}
+% \def\filedate{2019/11/01}
+% \def\docdate {2019/11/01}
+% \def\doclongdate{November~1, 2019}
 %
-% \CheckSum{2259}
+% \CheckSum{2262}
 %
 % \changes{0.01}{2017 Jan 06}{First writing of the code}
 % \changes{0.10}{2017 Apr 16}{Changed the look of the broom in the extensible
@@ -197,7 +197,7 @@
 %    integration\thanks{This file has
 %    version~\fileversion, release date \filedate;
 %    last documentation update: \docdate.
-%    Copyright \copyright~2017 by G.~Mezzetti
+%    Copyright \copyright~2019 by G.~Mezzetti
 %    (see page~\pageref{S:Copy}).}
 % }
 % \author{G. Mezzetti}
@@ -210,8 +210,8 @@
 %   pdfauthor       = {G. Mezzetti},
 %   pdfsubject      = {Documentation of the halloweenmath package},
 %   pdfkeywords     = {Halloween, math, scary mathematical symbols},
-%   pdfcreationdate = {D:20170425120000},
-%   pdfmoddate      = {D:20170425120000},
+%   pdfcreationdate = {D:20191101120000},
+%   pdfmoddate      = {D:20191101120000},
 %   bookmarksopen,
 %   bookmarksopenlevel = 1
 % }
@@ -300,7 +300,7 @@
 %    \label{S:Copy}
 %    \vspace{-\parskip}
 %
-%    Copyright \copyright~2017 by Gustavo \textsc{Mezzetti}.
+%    Copyright \copyright~2019 by Gustavo \textsc{Mezzetti}.
 %    All rights are reserved, except as noted below.
 %
 %    This document has been produced by feeding to a \LaTeX\ typesetting engine
@@ -347,7 +347,7 @@
 %
 %    \begin{list}{\setlength{\topsep}{0pt}}\item\relax
 %      Gustavo \textsc{Mezzetti}\\
-%      L.~S.~U. ``A.~di Savoia Duca degli Abruzzi''\\
+%      L.~S.~U. ``A.~di Savoia Duca d'Aosta''\\
 %      Via del Santo, 57\\
 %      I--35123\quad PADOVA\quad PD\\
 %      Italy
@@ -1219,7 +1219,7 @@
 %    The usual identification:
 %    \begin{macrocode}
 \ProvidesPackage{halloweenmath}
-                [2017/04/25 v0.10a (development)]
+                [2019/11/01 v0.11 (development)]
 %    \end{macrocode}
 %
 %    \subsection{Initial code}
@@ -1338,11 +1338,16 @@
 %    \end{macro}
 %
 %    \begin{macro}{\@HwM at right@or at left}
+%    \changes{0.11}{2019 Nov 01}{Corrected bug: \cs{@HwM at right@or at left} 
+%      now defaults to \cs{@gobbletwo}}
 %    Used to pass information about the orientation of left\slash right
-%    symmetric figures.  Here we just check that the name can be used, at the
-%    same time reserving it.
+%    symmetric figures.  More precisely, it is a switch that selects
+%    between two branches according to the current orientation.  Here we
+%    set the global default (no current orientation defined) so that it
+%    ignores \emph{both} branches, thus correcting a bug in versions
+%    prior to 0.11.
 %    \begin{macrocode}
-\@ifdefinable\@HwM at right@or at left{}
+\@ifdefinable\@HwM at right@or at left{\let \@HwM at right@or at left=\@gobbletwo}
 %    \end{macrocode}
 %    \end{macro}
 %

Modified: trunk/Master/texmf-dist/source/latex/halloweenmath/halloweenmath.ins
===================================================================
--- trunk/Master/texmf-dist/source/latex/halloweenmath/halloweenmath.ins	2019-11-01 20:58:55 UTC (rev 52601)
+++ trunk/Master/texmf-dist/source/latex/halloweenmath/halloweenmath.ins	2019-11-01 20:59:13 UTC (rev 52602)
@@ -3,7 +3,7 @@
 %
 % This file is part of a work named "halloweenmath package".
 %
-% Copyright (C) 2017 by Gustavo MEZZETTI.
+% Copyright (C) 2019 by Gustavo MEZZETTI.
 % 
 % The halloweenmath package may be distributed and/or modified under
 % the conditions of the LaTeX Project Public License, either version 1.3
@@ -25,7 +25,7 @@
 % only part of the Work" in the sense of the LaTeX Project Public
 % License, and should be avoided.
 % 
-% April 25, 2017 (vers. 0.10a)
+% November 1, 2019 (vers. 0.11)
 %
 \input docstrip
 
@@ -119,7 +119,7 @@
 This is a generated file.
 It is part of a work named "halloweenmath package".
 
-Copyright (C) 2017 by Gustavo MEZZETTI.
+Copyright (C) 2019 by Gustavo MEZZETTI.
 
 The halloweenmath package may be distributed and/or modified under
 the conditions of the LaTeX Project Public License, either version 1.3
@@ -141,7 +141,7 @@
 only part of the Work" in the sense of the LaTeX Project Public
 License, and should be avoided.
 
-April 25, 2017 (vers. 0.10a)
+November 1, 2019 (vers. 0.11)
 
 \endpreamble
 

Modified: trunk/Master/texmf-dist/tex/latex/halloweenmath/halloweenmath.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/halloweenmath/halloweenmath.sty	2019-11-01 20:58:55 UTC (rev 52601)
+++ trunk/Master/texmf-dist/tex/latex/halloweenmath/halloweenmath.sty	2019-11-01 20:59:13 UTC (rev 52602)
@@ -9,7 +9,7 @@
 %% This is a generated file.
 %% It is part of a work named "halloweenmath package".
 %% 
-%% Copyright (C) 2017 by Gustavo MEZZETTI.
+%% Copyright (C) 2019 by Gustavo MEZZETTI.
 %% 
 %% The halloweenmath package may be distributed and/or modified under
 %% the conditions of the LaTeX Project Public License, either version 1.3
@@ -31,7 +31,7 @@
 %% only part of the Work" in the sense of the LaTeX Project Public
 %% License, and should be avoided.
 %% 
-%% April 25, 2017 (vers. 0.10a)
+%% November 1, 2019 (vers. 0.11)
 %% 
 %% \CharacterTable
 %%  {Upper-case    \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
@@ -50,7 +50,7 @@
 %%   Right brace   \}     Tilde         \~}
 \NeedsTeXFormat{LaTeX2e}[2004/06/01] % LaTeX2e is required!
 \ProvidesPackage{halloweenmath}
-                [2017/04/25 v0.10a (development)]
+                [2019/11/01 v0.11 (development)]
 \newcommand*\@HwM at say@BOO{%
   \begingroup
     \escapechar \m at ne
@@ -95,7 +95,7 @@
 \RequirePackage{amsmath,pict2e}
 \@ifdefinable\@HwM at tempa{}
 \newcommand*\@HwM at thickness@units at for[1]{\fontdimen 8 #1\thr@@}
-\@ifdefinable\@HwM at right@or at left{}
+\@ifdefinable\@HwM at right@or at left{\let \@HwM at right@or at left=\@gobbletwo}
 \newcommand*\@HwM at set@right at dir{%
   \let \@HwM at right@or at left \@firstoftwo
 }



More information about the tex-live-commits mailing list