aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mandoc.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-07-21 14:13:00 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-07-21 14:13:00 +0000
commit610da288ad1c36332f5bc333692f49e2326fa30d (patch)
tree41428bda139fbccd0a81dd5648fefa91a1813b46 /mandoc.h
parent460878425b46952fed9a61e74b53e8ecd243a9c2 (diff)
downloadmandoc-610da288ad1c36332f5bc333692f49e2326fa30d.tar.gz
mandoc-610da288ad1c36332f5bc333692f49e2326fa30d.tar.zst
mandoc-610da288ad1c36332f5bc333692f49e2326fa30d.zip
Full support for eqn positionals (above, over, sup, sub, etc.).
Diffstat (limited to 'mandoc.h')
-rw-r--r--mandoc.h18
1 files changed, 17 insertions, 1 deletions
diff --git a/mandoc.h b/mandoc.h
index 4e14f44f..cd29e688 100644
--- a/mandoc.h
+++ b/mandoc.h
@@ -1,4 +1,4 @@
-/* $Id: mandoc.h,v 1.86 2011/07/21 13:37:04 kristaps Exp $ */
+/* $Id: mandoc.h,v 1.87 2011/07/21 14:13:00 kristaps Exp $ */
/*
* Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -306,6 +306,17 @@ enum eqn_fontt {
EQNFONT__MAX
};
+enum eqn_post {
+ EQNPOS_NONE = 0,
+ EQNPOS_OVER,
+ EQNPOS_SUP,
+ EQNPOS_SUB,
+ EQNPOS_TO,
+ EQNPOS_FROM,
+ EQNPOS_ABOVE,
+ EQNPOS__MAX
+};
+
/*
* A "box" is a parsed mathematical expression as defined by the eqn.7
* grammar.
@@ -314,11 +325,16 @@ struct eqn_box {
enum eqn_boxt type; /* type of node */
struct eqn_box *child; /* child node */
struct eqn_box *next; /* next in tree */
+ enum eqn_post pos; /* position of next box */
char *text; /* text (or NULL) */
enum eqn_markt mark; /* a mark about the box */
enum eqn_fontt font; /* font of box */
};
+/*
+ * An equation consists of a tree of expressions starting at a given
+ * line and position.
+ */
struct eqn {
struct eqn_box *root; /* root mathematical expression */
int ln; /* invocation line */