Every once in a while I miss having the option to write some LaTeX math on SO. E.g. when talking about automata. I'm certainly not the only one. And I think the person answering this question would have appreciated it as well. I'm sure there are more examples.

It can be done, look e.g. at the Physics forums. Multiple solutions exits, either by converting the LaTeX code to an image or MathML.

Since the fields of theoretical computer science and computer programming overlap (formal languages, data structures, ...), and because plenty of users are acquainted with LaTeX, I think it makes sense to provide support for mathematical notation on SO. What do you think?

link|improve this question

33% accept rate
feedback

6 Answers

Found a site that does just this: c=sqrt(a^2+b^2) should work.

See also this site and particularly this page for more info.

I can't seem to get the image working, I got the image working, thanks to Kip; for those who are curious, the url I am using is http://latex.codecogs.com/png.latex?c=%5csqrt%7ba%5e2%2bb%5e2%7d (which doesn't work properly as a link either - wonder if it has something to do with the \ in the url?)

Here's a cool one: StackOverflow

link|improve this answer
:( - doesn't work for some reason. – a_m0d Jul 10 '09 at 2:59
Strange indeed. Because loading the given example directly in the browser does work. I changed the backslash to %5C, but that didn't help either. – Stephan202 Jul 10 '09 at 3:05
1  
I think you want latex.codecogs.com/png.latex?c=%5csqrt%7ba%5e2%2bb%5e2%7d – Kip Jul 10 '09 at 3:08
2  
you can generate the encoded url string here: string-functions.com/urlencode.aspx just paste in the part that goes after "c=" – Kip Jul 10 '09 at 3:09
note: for my first comment there, you can't copy the link from the comment, because SO is shortening part of it to an ellipsis. click on it or copy the location to get a proper link. – Kip Jul 10 '09 at 3:11
Yeah, I just right clicked and "Copy Link Location" – a_m0d Jul 10 '09 at 3:11
Important that you only paste in that last bit - otherwise it really stuffs it up! – a_m0d Jul 10 '09 at 3:19
2  
A follow-up: I found that texify.com has a much nicer interface, and it produces encoded URLs right away. – Stephan202 Jul 12 '09 at 11:47
I wonder what it would take to get a copy of that codecogs setup? Hardware, licencing etc. – BCS Jul 23 '09 at 17:47
On the same site, you can go here: latex.codecogs.com/editor.php That lets you enter the equation, get a preview, then it gives you a link to the actual image – Kip Jul 23 '09 at 17:55
@stephan: I find the codecogs setup nicer because it helps you to build your equation; however, it is more work. – a_m0d Jul 24 '09 at 0:39
+1 For Stack "Over" Flow. – muntoo Apr 16 '11 at 4:35
feedback

This is implemented on http://math.stackexchange.com -- you can check it out there. It will never be on Stack Overflow, though, as it is an extremely heavy dependency.

Info here: http://meta.math.stackexchange.com/questions/2/tex-math-markup-is-sorely-needed

link|improve this answer
+1 - thanks for implementing this where needed the most! The first URL is kind of a mashup though, it should be math.stackexchange.com. (I'm afraid that might happen regularly with the three involved and related entities ;) – Steffen Opel Aug 7 '10 at 12:07
Check out this answer that refers to client-side latex. – Lance Roberts Jul 19 '11 at 14:52
1  
I'm struggling to comprehend how it could be an "extremely heavy dependency". It's apparently not too heavy for math.stackexchange! Some questions and answers are better expressed in better notation. Can you please put some evidence to your claim? – spraff Jul 26 '11 at 15:08
@spraff math notation is not that useful to practicing programmers, whereas it is rather essential to practicing mathematicians. You can see the full list of sites that support math notation here: blog.stackoverflow.com/2011/04/… – Jeff Atwood Jul 27 '11 at 2:35
As a practicing programmer I dispute that, but it's a subjective point. What's objective is the heaviness of the dependency. That, I don't see. The software involved isn't especially big, and the images don't have to be computed very often. Or am I missing something? – spraff Jul 27 '11 at 7:26
The support is also there on electronics.stackexchange.com and even the recently created dsp.stackexchange.com - I'd really like to see it on stackoverflow.com too. – Paul R Jan 1 at 14:44
feedback

Is there any service out there that lets you generate latex images using query strings? I'm thinking something like:

<img src="http://example.com/latex.png?formula=2%2B2%3D4" />

It's hardly ideal because the URL encoding makes it difficult to read (the above example is just "2+2=4"), but it would at least be a workable solution. But I don't see it being implemented here because it's not necessary often enough for the team to focus their efforts on it.


Actually, if this service doesn't exist, someone should create it and they'd probably be able to make money. Since the URL encoding is so difficult, users would have to come to your site and enter the formula there, and let it generate the image url for you. You could sell ads there directed at math and science professors (which might be pretty effective, since you'd have a fairly narrow audience). And the generated LaTeX could have some kind of non-obtrusive watermark that would lead users back to your site.

link|improve this answer
1  
Very interesting idea! – Stephan202 Jul 10 '09 at 2:19
1  
I like it! So who's gonna step up? – Tom Ritter Jul 10 '09 at 2:22
1  
Already been done - see my answer below! – a_m0d Jul 10 '09 at 3:10
i see... oh well :( – Kip Jul 10 '09 at 3:15
feedback

We use mathematical notation all the time in the algorithm and math questions - LaTeX would be incredibly helpful (especially if it wouldn't be too much work to implement - mathoverflow.com already has it!)

link|improve this answer
feedback

mimetex would be a great solution. It's rather lightweight and does math pretty well as dynamically generated images. It's also incredibly easy to set up. However, the administrators would need to add it.

See mimetex's website.

link|improve this answer
That page refers to forkosh.com/mathtex.html for servers with LaTeX installed. The output looks better, so I guess that is to be preferred. – Stephan202 Jul 21 '09 at 14:37
feedback

We should look into how mathoverflow did it. They have a very neat integrated solution which I think should be added to all the SO-like sites.

link|improve this answer
2  
Really? Even moms4mom.com? – Andrew Nov 23 '09 at 1:46
6  
What moms can't do math? – beggs Nov 23 '09 at 4:31
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged