Page 1 of 1

Mathematical expressions in TRichView

Posted: Wed Mar 29, 2017 5:30 pm
by Sergey Tkachenko
Starting from TRichView v16.14, a new item type can be added in documents: mathematical expressions (i.e. equations, formulas, etc.)
This item's type is TRVMathItemInfo.
Expressions are defined in a LaTeX-like language.
Image

The current version includes the item itself, but does not include a dialog for editing equations. It will be included in the next update.

License
The item uses units of Adit Math Engine. Currently, they are distributed exclusively with TRichView.
They are covered by the open source license MPL 2.0 with the following addition restrictions:
Adit Math Engine cannot be used in any E-learning/Assessment/Testing/Math software (Freeware or Shareware) or outside TRichView engine without our [Adit Software] written permission.
You can contact Adit Software if you want to use Adit Math Engine under a different license or to request an exception from the restrictions above.
The main reason of these restrictions is not allowing using in software that can compete with their own product.
Currently, Adit Math Engine can be used in RAD Studio XE4 and newer. Contact them if you want to use it in older versions of Delphi/C++Builder.

Re: Mathematical expressions in TRichView

Posted: Wed Mar 29, 2017 5:39 pm
by Sergey Tkachenko
Properties

The main properties of this item are: font name, font size (defined in half-points), text color. You can set default values for all formulas in the document, and override them in specific formulas.

You can also define fill color, border color and width.

You can also specify the inline style for the formula (Boolean property). The inline style is more compact and is recommended for using for formulas inserted in text lines.

You can use only mathematical fonts. By default, the item uses 'Cambria Math'. You can use other mathematical fonts as well (such as 'Asana Math', 'Latin Modern Math', 'XITS Math', see the help file for download locations).
If the specified font is not installed on the computer, the item uses 'Cambria Math'. If 'Cambria Math' is not installed, it uses the first found available mathematical font. If no mathematical font is found, the item is displayed in an erroneous state (a crossed rectangle).
Note: 'Cambria Math' is a default font for equations in Microsoft Word.

Export
This version of the item is exported to HTML, RTF and DocX as a raster image (if possible, as PNG). Probably, more options will be available in future.

Re: Mathematical expressions in TRichView

Posted: Wed Mar 29, 2017 5:46 pm
by Sergey Tkachenko
Expressions used in the screenshot in this post:

Code: Select all

   \frac{\frac{1}{x}+\frac{1}{y}}{y-z}

   f(n) = \case{ n/2 & \quad \text{if } n \text{ is even} \\ -(n+1)/2  & \quad \text{if } n \text{ is odd}}
   
  \matrix{ a_{11} & a_{12} & \cdots & a_{1n} \\ a_{21} & a_{22} & \cdots & a_{2n} \\ \vdots & \vdots & \ddots & \vdots \\ a_{m1} & a_{m2} & \cdots & a_{mn} }
More about LaTeX formulas: https://en.wikibooks.org/wiki/LaTeX/Mathematics
Note that the item's language has differences in defining matrices and cases.

We plan to add a dialog for visual editing of these strings in RichViewActions soon.

Re: Mathematical expressions in TRichView

Posted: Tue Apr 25, 2017 3:22 pm
by DmitriPopov
Good news!
But what was the reason behind making formulas "LaTeX-like", and not just LaTeX? Users are accustomed to LaTeX, there's no need to define a subgenre. Another problem is that it's impossible to paste LaTeX code from another source, it needs conversion.

Re: Mathematical expressions in TRichView

Posted: Wed Apr 26, 2017 8:23 am
by Sergey Tkachenko
I forwarded this question to Adit Software.
But I can say that differences are minimal:
- simplified representation of matrices and cases (as functions)
- brackets after \left and \right must be prefixed.
So the conversion to/from pure LaTeX must be simple.