From ed99f9fe0b71d7a41eda5482a703ca123bb20a55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Sun, 30 Jan 2022 19:52:34 +0100 Subject: [PATCH] document math package --- doc/wrappers/math/.latexmkrc | 4 ++++ doc/wrappers/math/Makefile | 8 +++++++ doc/wrappers/math/math.tex | 46 ++++++++++++++++++++++++++++++++++++ 3 files changed, 58 insertions(+) create mode 100644 doc/wrappers/math/.latexmkrc create mode 100644 doc/wrappers/math/Makefile create mode 100644 doc/wrappers/math/math.tex diff --git a/doc/wrappers/math/.latexmkrc b/doc/wrappers/math/.latexmkrc new file mode 100644 index 0000000..4c81cd6 --- /dev/null +++ b/doc/wrappers/math/.latexmkrc @@ -0,0 +1,4 @@ +$makeindex = "makeindex -s gind.ist %O -o %D %S"; +$clean_ext .= ' glo'; +$clean_ext .= ' hd'; +$clean_ext .= ' ins'; diff --git a/doc/wrappers/math/Makefile b/doc/wrappers/math/Makefile new file mode 100644 index 0000000..e174370 --- /dev/null +++ b/doc/wrappers/math/Makefile @@ -0,0 +1,8 @@ +doc: + latexmk + +full: + latexmk -gg + +clean: + latexmk -C diff --git a/doc/wrappers/math/math.tex b/doc/wrappers/math/math.tex new file mode 100644 index 0000000..c7ced78 --- /dev/null +++ b/doc/wrappers/math/math.tex @@ -0,0 +1,46 @@ +\documentclass[full]{l3doc} + +\title{The \pkg{mkessler-math} package} +\author{Maximilian Ke\ss ler} + +\begin{document} + +\maketitle + +\begin{documentation} + +\begin{abstract} + A ready-to-use math package that just glues lots of other packages together. +\end{abstract} + +\section{Usage} +\begin{verbatim} + \usepackage{mkessler-math} +\end{verbatim} + +\section{Loaded packages} + +We load the following: + +\pkg{IEEEtrantools}, +\pkg{algorithm2e}, +\pkg{amsmath}, +\pkg{amssymb}, +\pkg{amsthm}, +\pkg{esint}, +\pkg{latexsym}, +\pkg{mathabx}, +\pkg{mathtools}, +\pkg{mkessler-categories}, +\pkg{mkessler-faktor}, +\pkg{mkessler-mathalias}, +\pkg{mkessler-mathfig}, +\pkg{mkessler-mathfixes} +\pkg{mkessler-mathfont}, +\pkg{mkessler-mathop}, +\pkg{mkessler-mathsymb}, +\pkg{mkessler-unicodechar}, + +\end{documentation} + +\end{document}