From 268c88f5433d2a87d1eeab40076c8737b5786b08 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Mon, 26 Jun 2017 20:11:45 +0000 Subject: catch up with the recent eqn(7) improvements --- regress/eqn/Makefile | 2 +- regress/eqn/define/Makefile | 4 ++-- regress/eqn/define/font.in | 15 +++++++++++++++ regress/eqn/define/font.out_ascii | 9 +++++++++ regress/eqn/define/invalid.out_ascii | 6 +++--- regress/eqn/define/quoted.in | 17 +++++++++++++++++ regress/eqn/define/quoted.out_ascii | 9 +++++++++ regress/eqn/delim/Makefile | 5 +++++ regress/eqn/delim/basic.in | 21 +++++++++++++++++++++ regress/eqn/delim/basic.out_ascii | 9 +++++++++ regress/eqn/fromto/basic.out_ascii | 2 +- regress/eqn/fromto/basic.out_html | 2 +- regress/eqn/fromto/noarg.out_ascii | 2 +- regress/eqn/matrix/basic.in | 3 +++ regress/eqn/matrix/basic.out_ascii | 2 +- regress/eqn/matrix/basic.out_html | 2 +- regress/eqn/nullary/Makefile | 5 +++-- regress/eqn/nullary/roman.in | 26 ++++++++++++++++++++++---- regress/eqn/nullary/roman.out_ascii | 10 +++++++--- regress/eqn/nullary/roman.out_html | 16 +++++++++++++++- regress/eqn/nullary/symbol.in | 19 +++++++++++++++++++ regress/eqn/nullary/symbol.out_ascii | 10 ++++++++++ regress/eqn/nullary/symbol.out_html | 6 ++++++ regress/eqn/nullary/symbol.out_utf8 | 10 ++++++++++ regress/eqn/over/precedence.out_ascii | 2 +- regress/eqn/over/precedence.out_html | 2 +- regress/eqn/size/basic.out_ascii | 2 +- regress/eqn/subsup/combine.out_ascii | 2 +- regress/eqn/subsup/combine.out_html | 2 +- regress/eqn/subsup/noarg.out_ascii | 2 +- regress/eqn/subsup/noarg.out_html | 2 +- regress/eqn/subsup/sub_group.out_ascii | 2 +- regress/eqn/subsup/sub_group.out_html | 2 +- regress/eqn/unary/Makefile | 4 ++-- regress/eqn/unary/bold.in | 12 ++++++++++++ regress/eqn/unary/bold.out_ascii | 9 +++++++++ regress/eqn/unary/bold.out_html | 1 + regress/eqn/unary/diacrit.out_ascii | 2 +- regress/eqn/unary/diacrit.out_html | 2 +- regress/eqn/unary/sqrt.in | 2 +- regress/eqn/unary/sqrt.out_ascii | 2 +- regress/eqn/unary/sqrt.out_html | 2 +- 42 files changed, 229 insertions(+), 37 deletions(-) create mode 100644 regress/eqn/define/font.in create mode 100644 regress/eqn/define/font.out_ascii create mode 100644 regress/eqn/define/quoted.in create mode 100644 regress/eqn/define/quoted.out_ascii create mode 100644 regress/eqn/delim/Makefile create mode 100644 regress/eqn/delim/basic.in create mode 100644 regress/eqn/delim/basic.out_ascii create mode 100644 regress/eqn/nullary/symbol.in create mode 100644 regress/eqn/nullary/symbol.out_ascii create mode 100644 regress/eqn/nullary/symbol.out_html create mode 100644 regress/eqn/nullary/symbol.out_utf8 create mode 100644 regress/eqn/unary/bold.in create mode 100644 regress/eqn/unary/bold.out_ascii create mode 100644 regress/eqn/unary/bold.out_html (limited to 'regress/eqn') diff --git a/regress/eqn/Makefile b/regress/eqn/Makefile index ef5effd1..b0479c0f 100644 --- a/regress/eqn/Makefile +++ b/regress/eqn/Makefile @@ -1,6 +1,6 @@ # $OpenBSD: Makefile,v 1.2 2015/01/28 21:10:28 schwarze Exp $ -SUBDIR = fromto define matrix nullary over size subsup unary +SUBDIR = fromto define delim matrix nullary over size subsup unary .include "../Makefile.sub" .include diff --git a/regress/eqn/define/Makefile b/regress/eqn/define/Makefile index 9dfa749c..ef0820d2 100644 --- a/regress/eqn/define/Makefile +++ b/regress/eqn/define/Makefile @@ -1,6 +1,6 @@ # $OpenBSD: Makefile,v 1.1 2015/01/28 21:10:28 schwarze Exp $ -REGRESS_TARGETS = invalid infinite -LINT_TARGETS = invalid infinite +REGRESS_TARGETS = font infinite invalid quoted +LINT_TARGETS = infinite invalid .include diff --git a/regress/eqn/define/font.in b/regress/eqn/define/font.in new file mode 100644 index 00000000..627c7e05 --- /dev/null +++ b/regress/eqn/define/font.in @@ -0,0 +1,15 @@ +.Dd June 25, 2017 +.Dt DEFINE-FONT 1 +.Os OpenBSD +.Sh NAME +.Nm define-font +.Nd font selection takes place after define resolution +.Sh DESCRIPTION +initial text +.EQ +define alias 'sin x' +alias +define sin 'value' +sin +.EN +final text diff --git a/regress/eqn/define/font.out_ascii b/regress/eqn/define/font.out_ascii new file mode 100644 index 00000000..57199257 --- /dev/null +++ b/regress/eqn/define/font.out_ascii @@ -0,0 +1,9 @@ +DEFINE-FONT(1) General Commands Manual DEFINE-FONT(1) + +NNAAMMEE + ddeeffiinnee--ffoonntt - font selection takes place after define resolution + +DDEESSCCRRIIPPTTIIOONN + initial text sin _x _v_a_l_u_e final text + +OpenBSD June 25, 2017 OpenBSD diff --git a/regress/eqn/define/invalid.out_ascii b/regress/eqn/define/invalid.out_ascii index 0725dde2..62496650 100644 --- a/regress/eqn/define/invalid.out_ascii +++ b/regress/eqn/define/invalid.out_ascii @@ -4,11 +4,11 @@ NNAAMMEE ddeeffiinnee--iinnvvaalliidd - invalid define and undef statements DDEESSCCRRIIPPTTIIOONN - define without variable name: 1/2 bruch eol + define without variable name: 1/2 _b_r_u_c_h eol - define without value: 1/2 bruch eol + define without value: 1/2 _b_r_u_c_h eol - define without value: 1/2 bruch eol + define without value: 1/2 _b_r_u_c_h eol tdefine without variable name: eol diff --git a/regress/eqn/define/quoted.in b/regress/eqn/define/quoted.in new file mode 100644 index 00000000..a98733f1 --- /dev/null +++ b/regress/eqn/define/quoted.in @@ -0,0 +1,17 @@ +.Dd June 25, 2017 +.Dt DEFINE-QUOTED 1 +.Os OpenBSD +.Sh NAME +.Nm define-quoted +.Nd interaction of the define control statement with quoting +.Sh DESCRIPTION +initial text +.EQ +define unquoted 'sin' +"unquoted" +unquoted +define quoted '"sin"' +"quoted" +quoted +.EN +final text diff --git a/regress/eqn/define/quoted.out_ascii b/regress/eqn/define/quoted.out_ascii new file mode 100644 index 00000000..ed86222f --- /dev/null +++ b/regress/eqn/define/quoted.out_ascii @@ -0,0 +1,9 @@ +DEFINE-QUOTED(1) General Commands Manual DEFINE-QUOTED(1) + +NNAAMMEE + ddeeffiinnee--qquuootteedd - interaction of the define control statement with quoting + +DDEESSCCRRIIPPTTIIOONN + initial text _u_n_q_u_o_t_e_d sin _q_u_o_t_e_d _s_i_n final text + +OpenBSD June 25, 2017 OpenBSD diff --git a/regress/eqn/delim/Makefile b/regress/eqn/delim/Makefile new file mode 100644 index 00000000..eba7d657 --- /dev/null +++ b/regress/eqn/delim/Makefile @@ -0,0 +1,5 @@ +# $OpenBSD: Makefile,v 1.1.1.1 2015/01/01 12:53:46 schwarze Exp $ + +REGRESS_TARGETS = basic + +.include diff --git a/regress/eqn/delim/basic.in b/regress/eqn/delim/basic.in new file mode 100644 index 00000000..60a09701 --- /dev/null +++ b/regress/eqn/delim/basic.in @@ -0,0 +1,21 @@ +.Dd June 26, 2017 +.Dt DELIM-BASIC 1 +.Os OpenBSD +.Sh NAME +.Nm delim-basic +.Nd inline eqn delimiters +.Sh DESCRIPTION +initial text +.EQ +delim <>alpha +.EN +inline +.EQ +delim offgamma +.EN +inline +.EQ +delim onepsilon +.EN +inline +final text diff --git a/regress/eqn/delim/basic.out_ascii b/regress/eqn/delim/basic.out_ascii new file mode 100644 index 00000000..d139aabd --- /dev/null +++ b/regress/eqn/delim/basic.out_ascii @@ -0,0 +1,9 @@ +DELIM-BASIC(1) General Commands Manual DELIM-BASIC(1) + +NNAAMMEE + ddeelliimm--bbaassiicc - inline eqn delimiters + +DDEESSCCRRIIPPTTIIOONN + initial text a inline B y inline e inline ,C final text + +OpenBSD June 26, 2017 OpenBSD diff --git a/regress/eqn/fromto/basic.out_ascii b/regress/eqn/fromto/basic.out_ascii index 1c3105d4..f8572579 100644 --- a/regress/eqn/fromto/basic.out_ascii +++ b/regress/eqn/fromto/basic.out_ascii @@ -4,6 +4,6 @@ NNAAMMEE ffrroommttoo--bbaassiicc - vertical stacking DDEESSCCRRIIPPTTIIOONN - initial text E_(i = 1)^oo 1/i^2 final text + initial text E_(_i = 1)^oo 1/_i^2 final text OpenBSD January 1, 2015 OpenBSD diff --git a/regress/eqn/fromto/basic.out_html b/regress/eqn/fromto/basic.out_html index 700edcc2..a5789c19 100644 --- a/regress/eqn/fromto/basic.out_html +++ b/regress/eqn/fromto/basic.out_html @@ -1 +1 @@ -i=11i2 +i=11i2 diff --git a/regress/eqn/fromto/noarg.out_ascii b/regress/eqn/fromto/noarg.out_ascii index 06d2ae81..312fc36e 100644 --- a/regress/eqn/fromto/noarg.out_ascii +++ b/regress/eqn/fromto/noarg.out_ascii @@ -4,6 +4,6 @@ NNAAMMEE ffrroommttoo--nnooaarrgg - vertical stacking lacks final argument DDEESSCCRRIIPPTTIIOONN - initial text x_a^^ final text + initial text _x__a^^ final text OpenBSD January 1, 2015 OpenBSD diff --git a/regress/eqn/matrix/basic.in b/regress/eqn/matrix/basic.in index d7beea0d..09e318b3 100644 --- a/regress/eqn/matrix/basic.in +++ b/regress/eqn/matrix/basic.in @@ -13,5 +13,8 @@ right ) left ( pile { b sub 1 above b sub 2 } right ) +left [ +bold pile { sin above "sin" } +right ] .EN final text diff --git a/regress/eqn/matrix/basic.out_ascii b/regress/eqn/matrix/basic.out_ascii index b5100906..a7a1ba21 100644 --- a/regress/eqn/matrix/basic.out_ascii +++ b/regress/eqn/matrix/basic.out_ascii @@ -4,6 +4,6 @@ NNAAMMEE mmaattrriixx--bbaassiicc - matrixes in equations DDEESSCCRRIIPPTTIIOONN - initial text ((a_11 a_21) (a_12 a_22)) (b_1 b_2) final text + initial text ((_a_11 _a_21) (_a_12 _a_22)) (_b_1 _b_2) [sin ssiinn] final text OpenBSD October 10, 2014 OpenBSD diff --git a/regress/eqn/matrix/basic.out_html b/regress/eqn/matrix/basic.out_html index d33b6b2d..b02fe584 100644 --- a/regress/eqn/matrix/basic.out_html +++ b/regress/eqn/matrix/basic.out_html @@ -1 +1 @@ -a11a12a21a22b1b2 +a11a12a21a22b1b2sinsin diff --git a/regress/eqn/nullary/Makefile b/regress/eqn/nullary/Makefile index ec5dfa06..de4bcf05 100644 --- a/regress/eqn/nullary/Makefile +++ b/regress/eqn/nullary/Makefile @@ -1,6 +1,7 @@ # $OpenBSD: Makefile,v 1.1.1.1 2015/01/01 12:53:46 schwarze Exp $ -REGRESS_TARGETS = roman -HTML_TARGETS = roman +REGRESS_TARGETS = roman symbol +UTF8_TARGETS = symbol +HTML_TARGETS = roman symbol .include diff --git a/regress/eqn/nullary/roman.in b/regress/eqn/nullary/roman.in index f4a081f1..f808ba7a 100644 --- a/regress/eqn/nullary/roman.in +++ b/regress/eqn/nullary/roman.in @@ -1,14 +1,32 @@ -.Dd October 12, 2014 +.Dd June 25, 2017 .Dt NULLARY-ROMAN 1 .Os OpenBSD .Sh NAME .Nm nullary-roman .Nd equation tokens set in roman font .Sh DESCRIPTION -initial text +initial text \(em .EQ -sin cos tan sinh cosh tanh arc +roman "unquoted words:" +sin cos tan sec csc asin acos atan asec acsc +sinh cosh tanh coth arc max min lim log ln exp Re Im and if for det +\(em +roman "quoted words:" +"sin" "cos" "tan" "sec" "csc" "asin" "acos" "atan" "asec" "acsc" +"sinh" "cosh" "tanh" "coth" "arc" +"max" "min" "lim" "log" "ln" "exp" +"Re" "Im" "and" "if" "for" "det" +\(em +roman "font operations:" +bold sin +bold "sin" +\(em +roman "superstring:" +sinus +\(em +roman "composite word:" +tan = sin/cos .EN -final text +\(em final text diff --git a/regress/eqn/nullary/roman.out_ascii b/regress/eqn/nullary/roman.out_ascii index cc6ff3a8..7b50dc46 100644 --- a/regress/eqn/nullary/roman.out_ascii +++ b/regress/eqn/nullary/roman.out_ascii @@ -4,7 +4,11 @@ NNAAMMEE nnuullllaarryy--rroommaann - equation tokens set in roman font DDEESSCCRRIIPPTTIIOONN - initial text sin cos tan sinh cosh tanh arc max min lim log ln exp Re Im - and if for det final text + initial text -- unquoted words: sin cos tan sec csc asin acos atan asec + acsc sinh cosh tanh coth arc max min lim log ln exp Re Im and if for det + -- quoted words: _s_i_n _c_o_s _t_a_n _s_e_c _c_s_c _a_s_i_n _a_c_o_s _a_t_a_n _a_s_e_c _a_c_s_c _s_i_n_h _c_o_s_h + _t_a_n_h _c_o_t_h _a_r_c _m_a_x _m_i_n _l_i_m _l_o_g _l_n _e_x_p _R_e _I_m _a_n_d _i_f _f_o_r _d_e_t -- font + operations: sin ssiinn -- superstring: _s_i_n_u_s -- composite word: tan = _s_i_n / + _c_o_s -- final text -OpenBSD October 12, 2014 OpenBSD +OpenBSD June 25, 2017 OpenBSD diff --git a/regress/eqn/nullary/roman.out_html b/regress/eqn/nullary/roman.out_html index 115daa05..151c858b 100644 --- a/regress/eqn/nullary/roman.out_html +++ b/regress/eqn/nullary/roman.out_html @@ -1 +1,15 @@ -sincostansinhcoshtanharcmaxminlimloglnexpReImandiffordet +unquoted +words:sincostan +seccsc +asinacosatanasec +acscsinh +coshtanhcotharc +maxminlimloglnexpReImandiffordetquoted +words: +sincos +tanseccscasinacosatanasecacscsinhcoshtanhcotharcmaxminlimloglnexpReImandiffordetfont +operations: +sinsinsuperstring:sinuscomposite +word: +tan=sin/ +cos diff --git a/regress/eqn/nullary/symbol.in b/regress/eqn/nullary/symbol.in new file mode 100644 index 00000000..f43e9e5a --- /dev/null +++ b/regress/eqn/nullary/symbol.in @@ -0,0 +1,19 @@ +.Dd June 25, 2017 +.Dt NULLARY-SYMBOL 1 +.Os OpenBSD +.Sh NAME +.Nm nullary-symbol +.Nd equation tokens for symbols +.Sh DESCRIPTION +initial text \(em +.EQ +roman "unquoted words:" +epsilon prime +\(em +roman "quoted words:" +"epsilon" "prime" +\(em +roman "composite word:" +epsilon-prime +.EN +\(em final text diff --git a/regress/eqn/nullary/symbol.out_ascii b/regress/eqn/nullary/symbol.out_ascii new file mode 100644 index 00000000..bbb74390 --- /dev/null +++ b/regress/eqn/nullary/symbol.out_ascii @@ -0,0 +1,10 @@ +NULLARY-SYMBOL(1) General Commands Manual NULLARY-SYMBOL(1) + +NNAAMMEE + nnuullllaarryy--ssyymmbbooll - equation tokens for symbols + +DDEESSCCRRIIPPTTIIOONN + initial text -- unquoted words: e ' -- quoted words: _e_p_s_i_l_o_n _p_r_i_m_e -- + composite word: _e_p_s_i_l_o_n - _p_r_i_m_e -- final text + +OpenBSD June 25, 2017 OpenBSD diff --git a/regress/eqn/nullary/symbol.out_html b/regress/eqn/nullary/symbol.out_html new file mode 100644 index 00000000..4e07edc4 --- /dev/null +++ b/regress/eqn/nullary/symbol.out_html @@ -0,0 +1,6 @@ +unquoted +words:ε +quoted words: +epsilonprimecomposite +word: +epsilon-prime diff --git a/regress/eqn/nullary/symbol.out_utf8 b/regress/eqn/nullary/symbol.out_utf8 new file mode 100644 index 00000000..7fae3b44 --- /dev/null +++ b/regress/eqn/nullary/symbol.out_utf8 @@ -0,0 +1,10 @@ +NULLARY-SYMBOL(1) General Commands Manual NULLARY-SYMBOL(1) + +NNAAMMEE + nnuullllaarryy--ssyymmbbooll – equation tokens for symbols + +DDEESSCCRRIIPPTTIIOONN + initial text — unquoted words: ε ′ — quoted words: _e_p_s_i_l_o_n _p_r_i_m_e — + composite word: _e_p_s_i_l_o_n - _p_r_i_m_e — final text + +OpenBSD June 25, 2017 OpenBSD diff --git a/regress/eqn/over/precedence.out_ascii b/regress/eqn/over/precedence.out_ascii index 3e930019..80bec6c2 100644 --- a/regress/eqn/over/precedence.out_ascii +++ b/regress/eqn/over/precedence.out_ascii @@ -4,6 +4,6 @@ NNAAMMEE oovveerr--pprreecceeddeennccee - precedence of the fraction operator DDEESSCCRRIIPPTTIIOONN - initial text 1 + x + x^2/2 + x^3/(2 * 3) final text + initial text 1 + _x + _x^2/2 + _x^3/(2 * 3) final text OpenBSD October 10, 2014 OpenBSD diff --git a/regress/eqn/over/precedence.out_html b/regress/eqn/over/precedence.out_html index c0128021..b7c4f36d 100644 --- a/regress/eqn/over/precedence.out_html +++ b/regress/eqn/over/precedence.out_html @@ -1 +1 @@ -1+x+x22+x32*3 +1+x+x22+x32*3 diff --git a/regress/eqn/size/basic.out_ascii b/regress/eqn/size/basic.out_ascii index 3177a1b5..2f825eaa 100644 --- a/regress/eqn/size/basic.out_ascii +++ b/regress/eqn/size/basic.out_ascii @@ -4,6 +4,6 @@ NNAAMMEE ssiizzee--bbaassiicc - font sizes DDEESSCCRRIIPPTTIIOONN - initial text x x x x final text + initial text _x _x _x _x final text OpenBSD October 10, 2014 OpenBSD diff --git a/regress/eqn/subsup/combine.out_ascii b/regress/eqn/subsup/combine.out_ascii index 945a4ad3..1eaeb504 100644 --- a/regress/eqn/subsup/combine.out_ascii +++ b/regress/eqn/subsup/combine.out_ascii @@ -4,6 +4,6 @@ NNAAMMEE ssuubbssuupp--ccoommbbiinnee - combination of subscripts and superscripts DDEESSCCRRIIPPTTIIOONN - initial text x_1^2 + e^x_2 final text + initial text _x_1^2 + _e^_x_2 final text OpenBSD October 10, 2014 OpenBSD diff --git a/regress/eqn/subsup/combine.out_html b/regress/eqn/subsup/combine.out_html index 6e2c7de2..65b1e9e4 100644 --- a/regress/eqn/subsup/combine.out_html +++ b/regress/eqn/subsup/combine.out_html @@ -1 +1 @@ -x12+ex2 +x12+ex2 diff --git a/regress/eqn/subsup/noarg.out_ascii b/regress/eqn/subsup/noarg.out_ascii index ad99680b..a0e8cbd1 100644 --- a/regress/eqn/subsup/noarg.out_ascii +++ b/regress/eqn/subsup/noarg.out_ascii @@ -4,6 +4,6 @@ NNAAMMEE ssuubbssuupp--nnooaarrgg - empty subscripts and superscripts DDEESSCCRRIIPPTTIIOONN - initial text x_1^^ final text + initial text _x_1^^ final text OpenBSD January 1, 2015 OpenBSD diff --git a/regress/eqn/subsup/noarg.out_html b/regress/eqn/subsup/noarg.out_html index 07416891..e5f4fd76 100644 --- a/regress/eqn/subsup/noarg.out_html +++ b/regress/eqn/subsup/noarg.out_html @@ -1 +1 @@ -x1 +x1 diff --git a/regress/eqn/subsup/sub_group.out_ascii b/regress/eqn/subsup/sub_group.out_ascii index 8de3c874..0ffd31c9 100644 --- a/regress/eqn/subsup/sub_group.out_ascii +++ b/regress/eqn/subsup/sub_group.out_ascii @@ -4,6 +4,6 @@ NNAAMMEE ssuubbssuupp--ssuubb__ggrroouupp - grouping of subscripts DDEESSCCRRIIPPTTIIOONN - initial text x_i + x_j_1 + (M_i)_j final text + initial text _x__i + _x__j_1 + (_M__i)__j final text OpenBSD October 10, 2014 OpenBSD diff --git a/regress/eqn/subsup/sub_group.out_html b/regress/eqn/subsup/sub_group.out_html index dad7c406..e74584eb 100644 --- a/regress/eqn/subsup/sub_group.out_html +++ b/regress/eqn/subsup/sub_group.out_html @@ -1 +1 @@ -xi+xj1+Mij +xi+xj1+Mij diff --git a/regress/eqn/unary/Makefile b/regress/eqn/unary/Makefile index f68a5ce7..3679153c 100644 --- a/regress/eqn/unary/Makefile +++ b/regress/eqn/unary/Makefile @@ -1,6 +1,6 @@ # $OpenBSD: Makefile,v 1.1.1.1 2015/01/01 12:53:46 schwarze Exp $ -REGRESS_TARGETS = diacrit sqrt -HTML_TARGETS = diacrit sqrt +REGRESS_TARGETS = bold diacrit sqrt +HTML_TARGETS = bold diacrit sqrt .include diff --git a/regress/eqn/unary/bold.in b/regress/eqn/unary/bold.in new file mode 100644 index 00000000..d1d1686d --- /dev/null +++ b/regress/eqn/unary/bold.in @@ -0,0 +1,12 @@ +.Dd June 26, 2017 +.Dt UNARY-BOLD 1 +.Os OpenBSD +.Sh NAME +.Nm unary-bold +.Nd font handling in bold boxes +.Sh DESCRIPTION +initial text +.EQ +bold { sin "sin" } +.EN +final text diff --git a/regress/eqn/unary/bold.out_ascii b/regress/eqn/unary/bold.out_ascii new file mode 100644 index 00000000..01ef870a --- /dev/null +++ b/regress/eqn/unary/bold.out_ascii @@ -0,0 +1,9 @@ +UNARY-BOLD(1) General Commands Manual UNARY-BOLD(1) + +NNAAMMEE + uunnaarryy--bboolldd - font handling in bold boxes + +DDEESSCCRRIIPPTTIIOONN + initial text ((sin ssiinn)) final text + +OpenBSD June 26, 2017 OpenBSD diff --git a/regress/eqn/unary/bold.out_html b/regress/eqn/unary/bold.out_html new file mode 100644 index 00000000..56d6762f --- /dev/null +++ b/regress/eqn/unary/bold.out_html @@ -0,0 +1 @@ +sinsin diff --git a/regress/eqn/unary/diacrit.out_ascii b/regress/eqn/unary/diacrit.out_ascii index 54a35c3c..1e35a8fc 100644 --- a/regress/eqn/unary/diacrit.out_ascii +++ b/regress/eqn/unary/diacrit.out_ascii @@ -4,6 +4,6 @@ NNAAMMEE uunnaarryy--ddiiaaccrriitt - diacritical marks in equations DDEESSCCRRIIPPTTIIOONN - initial text x. x" x^ x~ x-> x<-> (x + y) (x + y)_ final text + initial text _x. _x" _x^ _x~ _x-> _x<-> (_x + _y) (_x + _y)_ final text OpenBSD October 10, 2014 OpenBSD diff --git a/regress/eqn/unary/diacrit.out_html b/regress/eqn/unary/diacrit.out_html index 076c6663..02dcc2f4 100644 --- a/regress/eqn/unary/diacrit.out_html +++ b/regress/eqn/unary/diacrit.out_html @@ -1 +1 @@ -x˙x¨x^x~xxx+yx+y_ +x˙x¨x^x~xxx+yx+y_ diff --git a/regress/eqn/unary/sqrt.in b/regress/eqn/unary/sqrt.in index b416da7c..2bd4a9f5 100644 --- a/regress/eqn/unary/sqrt.in +++ b/regress/eqn/unary/sqrt.in @@ -7,6 +7,6 @@ .Sh DESCRIPTION initial text .EQ -r = sqrt { x sup 2 + y sup 2 } + sqrt { } + sqrt +r = sqrt { x sup 2 + y sup 2 } + sqrt a+b + sqrt { } + sqrt .EN final text diff --git a/regress/eqn/unary/sqrt.out_ascii b/regress/eqn/unary/sqrt.out_ascii index f109b770..7aa6778e 100644 --- a/regress/eqn/unary/sqrt.out_ascii +++ b/regress/eqn/unary/sqrt.out_ascii @@ -4,6 +4,6 @@ NNAAMMEE uunnaarryy--ssqqrrtt - square root DDEESSCCRRIIPPTTIIOONN - initial text r = sqrt(x^2 + y^2) + sqrt() + sqrt final text + initial text _r = sqrt(_x^2 + _y^2) + sqrt(_a + _b) + sqrt() + sqrt final text OpenBSD February 12, 2017 OpenBSD diff --git a/regress/eqn/unary/sqrt.out_html b/regress/eqn/unary/sqrt.out_html index a828ff1d..ca2de199 100644 --- a/regress/eqn/unary/sqrt.out_html +++ b/regress/eqn/unary/sqrt.out_html @@ -1 +1 @@ -r=x2+y2++ +r=x2+y2+a+b++ -- cgit v1.2.3-56-ge451