Or login with:
Products » Equation Editor »

Equations in Tiny MCE (v1.1)
This Tiny MCE plugin that allows equations to be created in HTML.
Examples:
Example
Usage
- To create a new equation, click the 'fx' button on the TinyMCE toolbar. This launches the Equation Editor.
- Create your equation.
- Select 'Copy to document' to insert the equation into your document at the cursor position.
- Double-click existing equations to edit them in the Equation Editor.

Example toolbar, CodeCogs Equation Editor button is bottom right.
Quick Installation
- Install the Tiny MCE Editor.
- Download tinymce_v1.1.zip and uncompress it to your desktop or server.
- Find the folder where you installed Tiny MCE. For our purposes we will assume this is "~/tinymce".
- Open the Tiny Mce plugins folder, "~/tinymce/plugins" and copy in the directory equation from the uncompressed tinymce_v1.1.zip.
- Integrate Tiny MCE into your web page in the normal way.
- Locate the plugins property, within the function tinyMCE.init and add the equation plugin. If you are unable to find the plugins property please add it.
- Now locate the theme_advanced_buttons1 property and add the button called equation.
- When you're done, the call of tinyMce.init should resemble :
<head>
<script type="text/javascript">
tinyMCE.init({
plugins : 'equation',
mode : "textareas",
theme : "advanced",
theme_advanced_buttons1 :
"equation,bold,italic,underline,separator,strikethrough,justifyleft",
theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom"
});
</script>
</head>
<body>
<textarea name="content" style="width:100%"></textarea>
</body>
