File: ANNOUNCEMENT

package info (click to toggle)
gtkmathview 0.7.7-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 8,388 kB
  • ctags: 7,020
  • sloc: cpp: 51,304; xml: 12,643; sh: 8,996; makefile: 1,593; ansic: 1,149; perl: 88
file content (181 lines) | stat: -rw-r--r-- 4,021 bytes parent folder | download | duplicates (9)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
		   GtkMathView v0.1.0 Announcement
		   -------------------------------

I'm glad to announce the first release of GtkMathView, a GTK widget
for rendering MathML documents. It is meant to be a standalone,
light-weight component and not a full browser.  GTK applications can
use the widget as a window for displaying mathematical formulas and
doing simple interactions.

At present, the widget is actively used as part of the HELM project
(see http://www.cs.unibo.it/helm).

This is both an announcement and a call for contribution. Despite the
low-numbered version, the widget recognizes most of MathML 2 (Draft)
elements and attributes (actually, only the handling of labeled rows
in a table is missing). Here are some of the features of GtkMathView:

- breaking of long expressions
- support for stretchy operators
- configurable support for additional fonts
- configurable support for the operator dictionary
- configurable support for entities
- selection of MathML subtrees

However, the code is far from being heavily tested, and I think there
are many bugs. For these reasons, anyone interested can contribute
with bug reports, suggestions and active development of the code, the
documentation, the configuration scripts. With your support, I expect
to release the 1.0 version in a few weeks.

Here is the home-page of the widget:

	http://www.cs.unibo.it/~lpadovan/mml-widget/

You will find the source package and the online version of the manual
(included in the distribution). The package includes detailed
information for compiling and running the widget, as well as the
source code of a minimal browser and some (sample) configuration
files.

To test the widget, write a MathML document (simply enclose a MathML
expression within a <math> element) and run the minimal browser on it.
(See at the bottom of this file for an example).

A note about the license: the widget is covered by the GNU GPL license
(NOT the GNU LGPL).

Waiting for your feedback,

	Luca Padovani <luca.padovani@cs.unibo.it>

<!-- test.xml: cut here -->
<math display="block">
  <mrow>
    <mo>&int;</mo>
    <mo>&ApplyFunction;</mo>
    <mfrac>
      <mrow>
        <mrow>
          <mi>a</mi>
	  <mo>&InvisibleTimes;</mo>
	  <mi>x</mi>
	</mrow>
	<mo>+</mo>
	<mi>b</mi>
      </mrow>
      <mrow>
        <msup>
	  <mi>x</mi>
	  <mn>2</mn>
	</msup>
	<mo>+</mo>
	<mrow>
	  <mi>p</mi>
	  <mo>&InvisibleTimes;</mo>
	  <mi>x</mi>
	</mrow>
	<mo>+</mo>
	<mi>q</mi>
      </mrow>
    </mfrac>
  </mrow>
  <mo>&DifferentialD;</mo>
  <mi>x</mi>
  <mo>=</mo>
  <mrow>
    <mrow>
      <mfrac><mi>a</mi><mn>2</mn></mfrac>
      <mo>&InvisibleTimes;</mo>
      <mrow>
        <mi>ln</mi>
	<mo>&ApplyFunction;</mo>
	<mrow>
	  <mo>(</mo>
	  <mrow>
	    <msup><mi>x</mi><mn>2</mn></msup>
	    <mo>+</mo>
	    <mrow>
	      <mi>p</mi>
	      <mo>&InvisibleTimes;</mo>
	      <mi>x</mi>
	    </mrow>
	    <mo>+</mo>
	    <mi>q</mi>
	  </mrow>
	  <mo>)</mo>
	</mrow>
      </mrow>
    </mrow>
    <mo>+</mo>
    <mrow>
      <mfrac>
        <mrow>
	  <mrow>
	    <mn>2</mn>
	    <mo>&InvisibleTimes;</mo>
	    <mi>b</mi>
	  </mrow>
	  <mo>-</mo>
	  <mrow>
	    <mi>a</mi>
	    <mo>&InvisibleTimes;</mo>
	    <mi>p</mi>
	  </mrow>
	</mrow>
	<msqrt>
	  <mrow>
	    <mrow>
	      <mn>4</mn>
	      <mo>&InvisibleTimes;</mo>
	      <mi>q</mi>
	    </mrow>
	    <mo>-</mo>
	    <msup>
	      <mi>p</mi>
	      <mn>2</mn>
	    </msup>
	  </mrow>
	</msqrt>
      </mfrac>
      <mo>&InvisibleTimes;</mo>
      <mrow>
        <mi>arctg</mi>
	<mo>&ApplyFunction;</mo>
	<mfrac>
	  <mrow>
	    <mrow>
	      <mn>2</mn>
	      <mo>&InvisibleTimes;</mo>
	      <mi>x</mi>
	    </mrow>
	    <mo>+</mo>
	    <mi>p</mi>
	  </mrow>
	  <msqrt>
	    <mrow>
	      <mrow>
	        <mn>4</mn>
		<mo>&InvisibleTimes;</mo>
		<mi>q</mi>
	      </mrow>
	      <mo>-</mo>
	      <msup>
	        <mi>p</mi>
		<mn>2</mn>
	      </msup>
	    </mrow>
	  </msqrt>
	</mfrac>
      </mrow>
    </mrow>
    <mo>+</mo>
    <mi>c</mi>
  </mrow>  
</math>
<!-- test.xml: cut here -->