summaryrefslogtreecommitdiff
path: root/tex/context/base/mkxl/strc-mat.lmt
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2023-03-07 00:19:30 +0100
committerContext Git Mirror Bot <phg@phi-gamma.net>2023-03-07 00:19:30 +0100
commitc677baac37632308600b5108b586f80246056c74 (patch)
tree308800d3f841d4c65121729535a093b7f9646eb4 /tex/context/base/mkxl/strc-mat.lmt
parente12b4fabeb0ce3ce6d256b54250cf38a8f940561 (diff)
downloadcontext-c677baac37632308600b5108b586f80246056c74.tar.gz
2023-03-06 23:17:00
Diffstat (limited to 'tex/context/base/mkxl/strc-mat.lmt')
-rw-r--r--tex/context/base/mkxl/strc-mat.lmt30
1 files changed, 30 insertions, 0 deletions
diff --git a/tex/context/base/mkxl/strc-mat.lmt b/tex/context/base/mkxl/strc-mat.lmt
new file mode 100644
index 000000000..3b2458eac
--- /dev/null
+++ b/tex/context/base/mkxl/strc-mat.lmt
@@ -0,0 +1,30 @@
+if not modules then modules = { } end modules ['strc-mat'] = {
+ version = 1.001,
+ comment = "companion to strc-mat.mkiv",
+ author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
+ copyright = "PRAGMA ADE / ConTeXt Development Team",
+ license = "see context related readme files"
+}
+
+local structures = structures
+
+local lists = structures.lists
+local sections = structures.sections
+local helpers = structures.helpers
+----- formulas = structures.formulas --reserved
+
+function helpers.formulanumber(data,spec)
+ if data then
+ local formulanumber = data.formulanumber
+ if formulanumber then
+ sections.number(data,spec,"formulanumber","formulanumber","number")
+ end
+ end
+end
+
+function lists.formulanumber(name,n,spec)
+ local result = lists.result
+ if result then
+ helpers.formulanumber(result[n])
+ end
+end