Help
maths online HTML formula tool
This tool shall enable you to implement some important mathematical symbols in your web pages. In order to use it, you should have some basic knowledge on HTML.
If you click at one of the red symbols (which are hyperlinks but not underlined in modern browsers), its HTML code is displayed in the tex field (left), and its representation by the web browser in the frame at the right. You may insert your own code into the text field, and thereafter click Refresh, in order to update the representation. Until you do this, a brown border around the text field warns you that code and representation might not be identical. Using the link Clear you may reset the content of both text field and representation frame.

You may choose out of two possible working modes:

  • Clear/new (which is the default after loading the tool) results in a representation of each newly chosen symbol, the previous content of the text field being deleted. This mode is appropriate if you look for the HTML code of a particular symbol.
  • Append causes newly chosen symbols to be appended to the previous content of the text field. This code is suitable if you want to compose some piece of code containing several symbols.
You may transfer the content of the text field into the HTML code of your web page by copy und paste (Ctrl C und Crtl V). Alternatively, you may load the representation in a separate browser window by clicking Represent in own window, and save as a web page (or print) the result.

In case you do not find the symbol you are after among the ones displayed, you might find them in the two lists loaded by the links "standard font" und "symbol font", showing all possible symbols.

For further possibilities to bring mathematical formulae on the web see the the page formulae and the web.




Some technical remarks:

When composing formulae or pieces of text (in principle you may generate a complete web page) you shoult keep the lengths of lines in the code not too long if you want to be able to read it later. Here one should consider that HTML tags may be broken into several lines (except after the opening "<"). Furthermore formulae should be designed such that they are not broken apart by the browser.

Example:
The representation of the formula 2a2 = 1 (no space between the symbols 2, a and the exponent) may be achieved by

     2<FONT FACE=Symbol>a</FONT><SUP>2</SUP> = 1
or (which is identical for the browser), by
     2<FONT FACE=Symbol>a</FONT
     ><SUP>2</SUP> = 1
whereas
     2<FONT FACE=Symbol>a</FONT><
     SUP>2</SUP> = 1
is not allowed. The code
     2<FONT FACE=Symbol>a</FONT>
     <SUP>2</SUP> = 1
looks better, but generates an additional space between a and the exponent and is represented as 2a 2 = 1.

In order to prevent the formula from being broken apart by the browser, the code may be replaced either by

     2<FONT FACE=Symbol>a</FONT
     ><SUP>2</SUP>&nbsp;=&nbsp;1
(where &nbsp; is the HTML code for a space at which the browser never breaks - it is contained in the last line of the tool) or by
     <NOBR>2<FONT FACE=Symbol>a</FONT
     ><SUP>2</SUP> = 1</NOBR>
(where the browser never breaks between <NOBR> and </NOBR>, despite the space in the code).