<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: How can I get a smooth nice math font in LaTeX?</title>
	<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX/</link>
	<description>Comments on Ask MetaFilter post How can I get a smooth nice math font in LaTeX?</description>
	<pubDate>Mon, 06 Apr 2009 03:30:29 -0800</pubDate>
	<lastBuildDate>Mon, 06 Apr 2009 03:30:29 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: How can I get a smooth nice math font in LaTeX?</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX</link>	
		<description>Why are LaTeX math fonts so terrible? Or am I missing something? I want to get some nice titles on a legend for a Matlab figure, and I have to use the LaTeX interpreter for some accents, but when I import the figure into Word the resulting font is very pixelated and just plain garbage. How do I get smooth and clear math fonts out of LaTeX? &lt;br /&gt;&lt;br /&gt; I am bound to using the LaTeX interpreter and $$ delimiters in order to get a dot above a Q, ie: $\dot{Q}$. But the default, italicized font is  blurry and pixelated. Even when I use, say $\mathrm{\dot{Q}}$ its still pixelated. And \mathtt gets rid of the dot. &lt;br&gt;
&lt;br&gt;
I&apos;m printing the figure to BMP and inserting into the Word document... I have to use Word even though I&apos;d rather be using LaTeX. Any suggestions are appreciated!</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2009:site.118718</guid>
		<pubDate>Mon, 06 Apr 2009 03:24:06 -0800</pubDate>
		<dc:creator>molecicco</dc:creator>
		
			<category>matlab</category>
		
			<category>font</category>
		
			<category>LaTeX</category>
		
			<category>tex</category>
		
			<category>math</category>
		
	</item> <item>
		<title>By: Netzapper</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700398</link>	
		<description>It&apos;s not the font.  It&apos;s the BMP you&apos;re producing.  Basically, you&apos;re going from a beautiful font with infinite (unblurred, unpixelated) detail and rasterizing it to (a nominal) 72 dpi.  This works about as well as you can expect a vector-&amp;gt;raster conversion to turn out.  If you&apos;re using one of the standard Microsoft &quot;print to file&quot; options, that could be sapping some quality during the rasterization process as well.&lt;br&gt;
&lt;br&gt;
So, then you paste the crappy picture into a Word document, and it&apos;s not going to look anything like as good as the vector-based TrueType fonts that the rest of the document is made of.&lt;br&gt;
&lt;br&gt;
Unfortunately, unless you can find a way to work in a vector format (e.g. pdf, ps, or svg), you&apos;re going to have degraded quality.  You might have better luck with a better LaTeX-&amp;gt;raster renderer, but I wouldn&apos;t count on it.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700398</guid>
		<pubDate>Mon, 06 Apr 2009 03:30:29 -0800</pubDate>
		<dc:creator>Netzapper</dc:creator>
	</item><item>
		<title>By: molecicco</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700400</link>	
		<description>Hmmm. I thought it might be that. I am using Matlab&apos;s &quot;print&quot; function, and you can specify the format. svg is in fact an option... however whenever I insert any non-BMP object into the document, I get an icon (even JPG, TIFF, anything!) &lt;br&gt;
&lt;br&gt;
But since I am using the printed object at 100% size, I still think I should be able to get a decent enough looking BMP out of it, no?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700400</guid>
		<pubDate>Mon, 06 Apr 2009 03:35:03 -0800</pubDate>
		<dc:creator>molecicco</dc:creator>
	</item><item>
		<title>By: Netzapper</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700401</link>	
		<description>&lt;i&gt;But since I am using the printed object at 100% size, I still think I should be able to get a decent enough looking BMP out of it, no?&lt;/i&gt;&lt;br&gt;
&lt;br&gt;
No.  The pixelation is an artifact of the transition from vector to raster.  Having written some of these myself, I assume that the Matlab print code makes an assumption of 72 dpi and rasterizes on such a grid.  Good-looking font requires sub-pixel rendering.&lt;br&gt;
&lt;br&gt;
The fact that you then embed the 72-dpi image into something &lt;br&gt;
smarter/prettier is irrelevant.  At that point, the rasterization has occurred, blurring your font.&lt;br&gt;
&lt;br&gt;
Here&apos;s something you might try: output as an SVG (and hope it actually saves vectors and not an embedded raster in an SVG wrapper), open in inkscape or freehand or illustrator or something like that, and go through an export step properly setting up the rasterization resolution and all of that.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700401</guid>
		<pubDate>Mon, 06 Apr 2009 03:42:36 -0800</pubDate>
		<dc:creator>Netzapper</dc:creator>
	</item><item>
		<title>By: molecicco</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700405</link>	
		<description>ok! I am downloading inkscape, so let&apos;s see how it turns out. But it is really unfortunate that there is not a simpler way to include decent (ie professional-looking) Matlab-generated images into a Word document.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700405</guid>
		<pubDate>Mon, 06 Apr 2009 03:57:25 -0800</pubDate>
		<dc:creator>molecicco</dc:creator>
	</item><item>
		<title>By: bluefly</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700406</link>	
		<description>If you are using Windows, then in Inkscape, there is a file format called EMF that works well with Word documents (I think it&apos;s the open format of Word&apos;s WMF); it scales nicely.  On a Mac, you&apos;re out of luck.&lt;br&gt;
&lt;br&gt;
Also, when you say you just get an icon for a jpeg file in Word, is it true also if you print the document?  Sometimes, Word won&apos;t render the images on screen, but they will print.&lt;br&gt;
&lt;br&gt;
I feel your pain, though.  I&apos;m writing my dissertation in Word rather than Latex because my thesis advisor wants me to -- it sucks.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700406</guid>
		<pubDate>Mon, 06 Apr 2009 04:04:32 -0800</pubDate>
		<dc:creator>bluefly</dc:creator>
	</item><item>
		<title>By: leahwrenn</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700407</link>	
		<description>&lt;em&gt; however whenever I insert any non-BMP object into the document, I get an icon (even JPG, TIFF, anything!) &lt;/em&gt;&lt;br&gt;
&lt;br&gt;
You might mess around with this: I can take some math from LaTeX (TeXShop, specifically), save it out as a .pdf, and then drag and drop it into a Word document (Word 2008, piece of garbage that it is) and have it appear as an image.&lt;br&gt;
&lt;br&gt;
I don&apos;t think this has much to do with LaTeX as such.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700407</guid>
		<pubDate>Mon, 06 Apr 2009 04:08:15 -0800</pubDate>
		<dc:creator>leahwrenn</dc:creator>
	</item><item>
		<title>By: hariya</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700408</link>	
		<description>Other options:&lt;br&gt;
&lt;br&gt;
Can Matlab output images as 300 or 600 dpi? Tecplot can do that, and that is how I generate images to import into Word documents.&lt;br&gt;
&lt;br&gt;
You can also try to export as WMF or EMF from Matlab.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700408</guid>
		<pubDate>Mon, 06 Apr 2009 04:10:02 -0800</pubDate>
		<dc:creator>hariya</dc:creator>
	</item><item>
		<title>By: molecicco</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700410</link>	
		<description>Yeah, while I&apos;m waiting for the inkscape installer to download I&apos;ve been playing with the resolution. At 600 dpi, the image is huge and clear... but then I manually shrink it and it gets blurry. At 200 dpi it is clear, and the correct size, but pixelated. &lt;br&gt;
&lt;br&gt;
Yeah, bluefly, I&apos;m writing up my thesis and my supervisor insists on Word. Same boat. Yeah, Matlab can print to EMF, and I really thought that would be the best option, but the icon business made me abandon that path. I will see if the icon business is only on-screen. But that&apos;s still kind of a hassle since the size of the final image is different than the icon size.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700410</guid>
		<pubDate>Mon, 06 Apr 2009 04:16:08 -0800</pubDate>
		<dc:creator>molecicco</dc:creator>
	</item><item>
		<title>By: molecicco</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700415</link>	
		<description>Aha! OK, thank you everyone for the feedback. I think my main problem is that you can only insert BMP images as file-linked objects in Word 2007. &quot;Insert -&amp;gt; Picture&quot; works with EMF, Tiff, JPEG, etc.... so I am inserting my images like that now, and using EMF files since they actually look nice.&lt;br&gt;
&lt;br&gt;
However, it is a major pain in the ass. I create my images in batches, and during the writing process will update the images as a batch frequently. So &quot;Insert Object -&amp;gt; Create from file&quot; with the &quot;link to file&quot; box checked is perfect for that, since new images are updated automatically. By choosing &quot;Insert -&amp;gt; Picture&quot; I have to go through and manually replace every image when it changes. Boo.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700415</guid>
		<pubDate>Mon, 06 Apr 2009 04:37:28 -0800</pubDate>
		<dc:creator>molecicco</dc:creator>
	</item><item>
		<title>By: koeselitz</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700434</link>	
		<description>Really the unfortunate thing about LaTeX nowadays, and the reason I think it&apos;s dying out a bit, is because it hasn&apos;t been adapted as much as it should have for transfer between formats. I watched a friend of mine try using LaTeX for a web page once, and let me tell you... not a good idea. Rasterization is the only option, and it&apos;s not pretty.&lt;br&gt;
&lt;br&gt;
A propos of nothing... I was shocked, &lt;em&gt;shocked&lt;/em&gt; to discover that&lt;br&gt;
&lt;br&gt;
&lt;center&gt;&lt;b&gt;.&lt;/b&gt;&lt;/center&gt;&lt;br&gt;
&lt;center&gt;Q&lt;/center&gt;&lt;br&gt;
&lt;br&gt;
isn&apos;t supported by unicode. What the hell is &lt;em&gt;that&lt;/em&gt; about? So I can make &#9824; 	&#9827; &#9829; &#9830; all the different little suits on the back of a deck of &lt;em&gt;cards&lt;/em&gt;, but I can&apos;t represent rate of heat transfer? My condolences.&lt;br&gt;
&lt;br&gt;
This is a fudgy solution, but were it my thesis, I&apos;d probably find myself doing it with a pen. Kudos to you for trying to do it right.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700434</guid>
		<pubDate>Mon, 06 Apr 2009 05:19:59 -0800</pubDate>
		<dc:creator>koeselitz</dc:creator>
	</item><item>
		<title>By: jeffburdges</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700462</link>	
		<description>Are you sure you can&apos;t embed epdf or eps files into word documents?  I just talk my supervisor into letting me use latex.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700462</guid>
		<pubDate>Mon, 06 Apr 2009 05:54:35 -0800</pubDate>
		<dc:creator>jeffburdges</dc:creator>
	</item><item>
		<title>By: themel</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700467</link>	
		<description>koeselitz: Re unicode - there is COMBINING DOT ABOVE (U+0307). &lt;br&gt;
&lt;br&gt;
molecicco: Do you have to actually SEE the images while editing? I remember from ages ago that you could insert EPS files into word, where they would not be visible, but they would actualize on printing the document.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700467</guid>
		<pubDate>Mon, 06 Apr 2009 06:00:14 -0800</pubDate>
		<dc:creator>themel</dc:creator>
	</item><item>
		<title>By: molecicco</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700517</link>	
		<description>I discovered that I CAN embed EPS, EMF, JPEG, etc etc. BUT, I can not &quot;link to file&quot;. At this stage, that is an acceptable solution for me, but while working on the document linking to file was pretty necessary.&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700467&quot;&gt;Combining dot above&lt;/a&gt;... very interesting. Good to know!</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700517</guid>
		<pubDate>Mon, 06 Apr 2009 06:37:41 -0800</pubDate>
		<dc:creator>molecicco</dc:creator>
	</item><item>
		<title>By: ROU_Xenophobe</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700531</link>	
		<description>bluefly, molecicco:&lt;br&gt;
&lt;br&gt;
You can always write your dissertation in LaTeX and dump to RTF for your advisor.  Just ignore anything (s)he says about formatting.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700531</guid>
		<pubDate>Mon, 06 Apr 2009 06:49:47 -0800</pubDate>
		<dc:creator>ROU_Xenophobe</dc:creator>
	</item><item>
		<title>By: cmiller</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700562</link>	
		<description>Yeah, EPS -- embedded PostScript -- is almost certainly the way to go.&lt;br&gt;
&lt;br&gt;
If MSFT Word can&apos;t grok EPS, then you should work up enough rage to try OpenOffice for a few minutes to see if it&apos;s good enough for you.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700562</guid>
		<pubDate>Mon, 06 Apr 2009 07:13:11 -0800</pubDate>
		<dc:creator>cmiller</dc:creator>
	</item><item>
		<title>By: oddman</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700581</link>	
		<description>So your adviser is, presumably, in your field.  If he insists on using Word but needs LaTex for precision, then he must surely have come across problems like this before. Could you ask him how he does it? Perhaps, you could broach the subject by saying &quot;Hey I figured out how to do this, but it&apos;s a bit of pain. Do you have an easy way to do it?&quot;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700581</guid>
		<pubDate>Mon, 06 Apr 2009 07:26:28 -0800</pubDate>
		<dc:creator>oddman</dc:creator>
	</item><item>
		<title>By: bluefly</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700595</link>	
		<description>&lt;em&gt;So your adviser is, presumably, in your field. If he insists on using Word but needs LaTex for precision, then he must surely have come across problems like this before.  Could you ask him how he does it? &lt;/em&gt;&lt;br&gt;
&lt;br&gt;
I laughed so hard when I read this.  I don&apos;t think my advisor has formatted a paper in years.  That&apos;s what grad students and post-docs are for.  He just likes Word because it&apos;s easy to edit the text (for him) -- it&apos;s my responsibility to make it look good.&lt;br&gt;
&lt;br&gt;
I&apos;d never seen that link to file thing before.  I might try that with some .bmp files.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700595</guid>
		<pubDate>Mon, 06 Apr 2009 07:34:09 -0800</pubDate>
		<dc:creator>bluefly</dc:creator>
	</item><item>
		<title>By: likedoomsday</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700738</link>	
		<description>You might also try MathType or Equation Editor.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700738</guid>
		<pubDate>Mon, 06 Apr 2009 09:18:23 -0800</pubDate>
		<dc:creator>likedoomsday</dc:creator>
	</item><item>
		<title>By: koeselitz</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700962</link>	
		<description>&lt;small&gt;themel: &lt;em&gt;koeselitz: Re unicode - there is COMBINING DOT ABOVE (U+0307). &lt;/em&gt;&lt;/small&gt;&lt;br&gt;
&lt;br&gt;
Yes, I know. But it can be very wonky, and it &lt;a href=&quot;https://staff.tlt.psu.edu/feed/item/5968&quot;&gt;apparently doesn&apos;t really work with Q.&lt;/a&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700962</guid>
		<pubDate>Mon, 06 Apr 2009 11:33:54 -0800</pubDate>
		<dc:creator>koeselitz</dc:creator>
	</item><item>
		<title>By: koeselitz</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1700970</link>	
		<description>&lt;small&gt;I generally don&apos;t trust those damned unicode &apos;combining accents&apos; very much at all if I&apos;m working with capitals, anyhow - no worky.&lt;/small&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1700970</guid>
		<pubDate>Mon, 06 Apr 2009 11:36:56 -0800</pubDate>
		<dc:creator>koeselitz</dc:creator>
	</item><item>
		<title>By: Netzapper</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1701763</link>	
		<description>&lt;i&gt;I laughed so hard when I read this. I don&apos;t think my advisor has formatted a paper in years. That&apos;s what grad students and post-docs are for. He just likes Word because it&apos;s easy to edit the text (for him) -- it&apos;s my responsibility to make it look good.&lt;/i&gt;&lt;br&gt;
&lt;br&gt;
This actually raises a good point.&lt;br&gt;
&lt;br&gt;
Why &lt;i&gt;not&lt;/i&gt; typeset the thing in LaTeX?  Use the crappy BMP outputs from Matlab during the editing process when your prof is actually doing something, and then once the text and everything is finalized, typeset the document in LaTeX.&lt;br&gt;
&lt;br&gt;
That&apos;s really how this work-flow is supposed to go anyway.  Work out the actual content in a word processor (Word), and then once that&apos;s finalized, typeset it and insert final versions of figures (in LaTeX).</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1701763</guid>
		<pubDate>Mon, 06 Apr 2009 18:47:23 -0800</pubDate>
		<dc:creator>Netzapper</dc:creator>
	</item><item>
		<title>By: molecicco</title>
		<link>http://ask.metafilter.com/118718/How-can-I-get-a-smooth-nice-math-font-in-LaTeX#1744319</link>	
		<description>Long time since the post but to wrap it up - EMF was the winner here as far as image formats go. My problem was that I wanted to insert images as &apos;objects&apos; and link to them - and the only image format you can do that with in Word is BMP (linking to the image means that when you edit the image, it is automatically updated in the file, and this can be quite useful).&lt;br&gt;
&lt;br&gt;
So, I had to forego image linking and just drop a nice, non-rasterized image onto the Word document, and for me EMF was the best format to use.&lt;br&gt;
&lt;br&gt;
Also, combinging dot above was a godsend!</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.118718-1744319</guid>
		<pubDate>Wed, 13 May 2009 02:57:09 -0800</pubDate>
		<dc:creator>molecicco</dc:creator>
	</item>
	</channel>
</rss>
