-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.lua
executable file
·39 lines (39 loc) · 2.51 KB
/
build.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
-- $Id: build.lua 10572 2024-11-04 15:37:34Z cfrees $
-- Build configuration for prooftrees
--------------------------------------------------------------------------------
maindir = maindir or "."
sourcedir = sourcedir or maindir
--------------------------------------------------------------------------------
ctanpkg = "prooftrees"
module = "prooftrees"
--------------------------------------------------------------------------------
checkconfigs = { "build", "config-mem" }
manifestfile = "manifest.txt"
sourcefiles = {"*.sty","prooftrees.tex"}
tagfiles = { "*.dtx", "README.md", "*.sty", "prooftrees.tex", "manifest.txt" }
typesetfiles = {"prooftrees.tex"}
--------------------------------------------------------------------------------
indexstyle = ""
typesetruns = 4
--------------------------------------------------------------------------------
uploadconfig = {
ctanPath = "/macros/latex/contrib/prooftrees",
pkg = "prooftrees",
version = "v0.9",
author = "Clea F. Rees",
uploader = "Clea F. Rees",
license = "lppl1.3c",
update = true,
summary = "Annotated logical tableaux based on forest with support for cross-references and memoization.",
description = "The package supports drawing proof trees of the kind often used in introductory logic classes, especially those aimed at students without strong mathematical backgrounds. Hodges (1991) is one example of a text which uses this system. When teaching such a system it is especially useful to annotate the tree with line numbers, justifications and explanations of branch closures.\n\nprooftrees provides a single environment, (either prooftree or tableau), and a variety of tools for annotating, customising and highlighting such trees. A cross-referencing system is provided for trees which cite line numbers in justifications for proof lines or branch closures.\n\nprooftrees is based on forest and, hence, TikZ. The package requires version 2.0.2 of Forest for expected results and will not work with version 1. Out-of-the-box support for memoization is based on forest version 2.1.",
bugtracker = "https://codeberg.org/cfr/prooftrees/issues",
repository = {"https://codeberg.org/cfr/prooftrees", "https://github.com/cfr42/prooftrees"},
topic = {"logic", "pgf-tikz", "proof", "tree"},
}
--------------------------------------------------------------------------------
date = "2016-2024"
if direxists(sourcedir .. "/../adnoddau/l3build") then
dofile(sourcedir .. "/../adnoddau/l3build/manifest.lua")
dofile(sourcedir .. "/../adnoddau/l3build/tag.lua")
end
-- vim: ts=2:sw=2:et: