Skip to main content
Email Password   helpLost your password?

Introduction

If you own applications such as Blogs, Forums or Wiki and strive to delight your customers with every new release, you probably don't need justification for this feature. In this article, I'll show you how you can allow your users to type in math equations and have them rendered in nice textbook format with absolutely minimal coding effort on your part.

The basic idea is to let the user type in something like this: <img src=".?$ x^2 = 25 $">

The above request first goes to your default.aspx file, where a line of code detects if it's a request for an image and transfers it to a handler. The handler uses MimeTeX to generate the GIF file for the equation and returns to the browser. Fortunately, you don't have to care about any of these, as it's all wrapped and ready for drag and drop.

If you are responsible for any of these types of applications, you owe it to your users to give them this ability:

Essentially, any application that ultimately renders user content in graphical form can add this feature. It doesn't have to be HTML content. For instance, a note-keeping software can detect the TeX content during editing surrounded by $ markers and replace them with a nice graphical form. It can use the exact same library given in this article for this purpose.

Tip:

How to show equations without any coding or even having your own server?

If you don't want to deploy and maintain code in this article, you can use my server for free. You can also use it on ANY blogs, Wikis or websites which do not support TeX and math equations.

To use my server, append http://shitalshah.com by the equation you want. Here's an example:

<img src="http://www.shitalshah.com?$ x^2 = 25 $">

Give it a try!

Background

MimeTeX is the guts of this code. MimeTeX is written by John Forkosh to mainly run under UNIX and as a CGI EXE under Windows. Obviously, while this works, it has many disadvantages like you have to have an ability to run a CGI EXE on IIS, which is a difficult feature for shared IIS hosting. Even if you have a dedicated server, the CGI EXE solution won't scale if you want to support thousands of users. Also, users would be required to add mimetex.exe into the image tag's source, which is less intuitive for users of applications like Blogs or Forums.

For this reason, I decided to convert the MimeTeX code into a Win32 DLL. This is a pretty simple task of taking C files, creating a VC++ Win32 DLL project, adding a DLL export and making other minor changes. But the bigger problem comes later: the DLL runs in-process and hence we should make sure that the C code is free from memory leaks. Unfortunately, this wasn't the case, but fortunately the debug functions like _CrtDumpMemoryLeaks and the VC++ IDE made it a little easier to find them. So, after a weekend's effort, this uncharted UNIX code was free from all known memory leaks. Over the next couple of weeks, John Forkosh and I were exchanging long emails discussing the 10 lines of changes I had made, analyzing them, perfecting them and thoroughly testing the code. It was great fun. The result was the MimeTeX Win32 DLL, which you can now call from your .NET code using DLLImport.

My next step was to create the ASP.NET IHttpHandler that would wrap this call, add caching on top of it and allow other customizations and admin functionality.

Using the Code

You can use this code in three ways:

The next question might be what is the format of the equations? How do you write Greek symbols, integrals, limits and so on? The format is known as TeX (or LaTeX) and you might be familiar with it if you have ever authored a scientific document in your school years. If not, it's a pretty simple format to learn. For instance, to display the pi symbol you just write \pi and to display the integration sign you write \int and so on. You can find good documentation here and here, but if you choose to be lazy, just use the free WYSWYG equation editor called TeXAide which will build the TeX string for you. Note that TeX ignores white spaces.

Points of Interest

You might have noticed that MimeTeX goes beyond just supporting the equations conforming to TeX format. For instance, you can also create sophisticated figures using LaTeX commands such as the following:

This is really cool because this feature allows your users to author scientific content just with MimeTeX. More examples are at John's website.

I've also thrown in some admin functionality to let you delete cache files (these are very small, typically 1 KB JPG files). You can access this using Eq2ImgAdmin.aspx. This page also lets you dynamically unload the MimeTeX DLL. Remember that this is a pure Win32 DLL, so it gets locked by the ASP.NET process once it gets loaded, unlike managed .NET DLLs. That means you can't update the DLL without restarting the IIS, an unfortunate scenario for shared hosting or even otherwise. To solve this problem, the admin page allows you to dynamically unload this unmanaged DLL from the process on demand. For the technically curious, I simply used GetModuleHandle and FreeLibrary Windows API calls. The admin functionality by default is not enabled. Follow the messages it shows to enable it. Also note that you can exclude this page completely without losing the core functionality.

The code supports a bunch of customization settings that you can put in web.config. By default none are required, but if you prefer, for example, you can choose to run MimeTeX out of the process instead of in-proc or you can run it as CGI or from an external URL. You can set the maximum length of equation strings and maximum cache size and cache folder and so on. I haven't got enough time to document them, but they are easy to figure out from the class Eq2ImgSettings and they all take the form:

<appSettings>
<add key="Eq2Img_ClientCacheAgeInSeconds" value="200" />
</appSettings>

Finally, here's the security disclosure you all have been waiting for: you are running unmanaged code from ASP.NET when you call into the MimeTeX DLL. That means ASP.NET should have sufficient permission for this (by default it does). However, the bigger concern is the possible nasty C bugs such as memory leaks and invalid pointers that might make your website unstable. In my testing, it does work satisfactorily; the in-proc mode is very scalable and MimeTeX itself has been in use on many websites since 2002. However, if you ever notice a problem, you do have an exit strategy of setting an option in your web.config file so that MimeTeX will run out of process or even completely disable it and serve only the cached files. As MimeTeX is an open source project, anyone has the liberty to fix the bugs as soon as they are found.

Need Help?

I'm passionate about enabling the web to allow users to author scientific content. If you have any problems using this code in your application, you can contact me for free assistance.

History

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
QuestionHi Pin
Member 2646037
0:46 18 Sep '09  
GeneralI got it working but had to put MimeTex.DLL in System32 folder of Windows Pin
gery128
3:20 3 Sep '09  
GeneralHope to Use It On Production System Pin
rajaquila
17:47 4 Aug '09  
GeneralAwesome work! Pin
panuvin
3:21 8 Jun '09  
General64-bit Version? Pin
abrockwell
11:34 19 May '09  
GeneralDoes not work in asp.net application Pin
xsoftdev
15:06 9 Jan '09  
GeneralRe: Does not work in asp.net application Pin
wuxbar22
2:10 19 Apr '09  
GeneralRe: Does not work in asp.net application Pin
gery128
3:32 3 Sep '09  
GeneralSimple Pin
alhimikyr
2:47 28 Dec '08  
QuestionAlgorithm Pin
subscribe0001
10:38 30 Sep '08  
GeneralAwesome Pin
josemaocu
5:01 22 Aug '08  
GeneralGeneral Pin
Jorge Bay Gondra
4:31 22 Aug '08  
QuestionAnti-Aliasing? White text on black background? Pin
panurge
12:36 13 Feb '08  
GeneralRe: Anti-Aliasing? White text on black background? Pin
panurge
12:39 13 Feb '08  
QuestionRe: Anti-Aliasing? White text on black background? Pin
panurge
5:26 14 Feb '08  
GeneralGreat thanks Pin
Corsar
4:01 12 Nov '07  
GeneralPNG Pin
nbastos
0:07 23 Oct '07  
GeneralHow to declare MimTeX.dll in Visual Basic 6? Pin
igorpett
6:22 3 Oct '07  
GeneralRe: How to declare MimTeX.dll in Visual Basic 6? Pin
Quoc San
19:31 4 Sep '08  
GeneralHow to use it in Vc 6.0? Pin
philophos
8:22 16 Sep '07  
GeneralGreat work! Pin
controlstudy
4:00 25 Apr '07  
GeneralThe source is kinda wrong Pin
XH_expanders
17:27 26 Nov '06  
GeneralCreate Image to stream? Pin
Dallmeier
23:38 29 Aug '06  
GeneralVisual Studio 2005 Pin
ffolch
8:33 26 Jun '06  
GeneralScalable? Pin
elziko
2:19 9 Feb '06  


Last Updated 30 Jan 2008 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009