Or login with:
Products » Equation Editor »

FCK Editor (plugin v2.4)
A FCKEditor plugin that allows equations to be created in HTML.
Example
Usage
- To create a new equation, click the fx button on the FCK Editor 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 left.
Quick Installation
- Install the FCK Editor.
- Download EqnEditor_fck_plugin_v2.4.zip and uncompress it to your desktop or server.
- Find the folder where you installed fckeditor. For the current purposes, we will assume this is ~/fckeditor.
- Open the FCKEditor plugins folder, ~/fckeditor/editor/plugins and copy into this the directory equation from EqnEditor_fck_plugin_v2.4.zip.
- Open ~/fckeditor/fckconfig.js and find the line:
FCKConfig.PluginsPath = FCKConfig.BasePath + 'plugins/' ;and add:FCKConfig.Plugins.Add( 'equation', 'en' );
FCKConfig.TidyEqns=false; // or true to encode backslashes - In the same file, "~/fckeditor/fckconfig.js", find the line:
FCKConfig.ToolbarSets["Default"] = [and add the "Equation" option wherever appropriate, e.g.:
['Source','DocProps','-','Save','NewPage','Preview','-','Templates'],FCKConfig.ToolbarSets["Default"] = [
['Source','Equation','DocProps','-','Save','NewPage','Preview','-','Templates'], - Optionally you can also search for
FCKConfig.ToolbarSets["Basic"] = [and again add the "Equation" option, e.g.,
['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink','-','About']
] ;FCKConfig.ToolbarSets["Basic"] = [
['Equation','Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink','-','About']
] ; - And Enjoy!