<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>NullVoid</title>
	<atom:link href="http://blog.mikezhang.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mikezhang.com</link>
	<description>thoughts of michael xiaoquan zhang professor at hkust</description>
	<pubDate>Thu, 28 Jan 2010 05:32:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Converting ISBN13 to ISBN10</title>
		<link>http://blog.mikezhang.com/2010/01/28/converting-isbn13-to-isbn10</link>
		<comments>http://blog.mikezhang.com/2010/01/28/converting-isbn13-to-isbn10#comments</comments>
		<pubDate>Thu, 28 Jan 2010 05:32:37 +0000</pubDate>
		<dc:creator>ET</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.mikezhang.com/?p=758</guid>
		<description><![CDATA[I need to convert a bunch of isbn numbers from the 13-digit format to the 10-digit format.
Figured out the algorithm, and implemented the following subroutine in PERL.  It should be fairly simple to port it to other languages.
sub isbn1310{
my $isbn13=shift;
my @isbn13=split(//,$isbn13);
my $sum = ($isbn13[3] * 10) + (9 * $isbn13[4]) + (8 * $isbn13[5]) + [...]]]></description>
			<content:encoded><![CDATA[<p>I need to convert a bunch of isbn numbers from the 13-digit format to the 10-digit format.</p>
<p>Figured out the algorithm, and implemented the following subroutine in PERL.  It should be fairly simple to port it to other languages.</p>
<p>sub isbn1310{</p>
<p>my $isbn13=shift;<br />
my @isbn13=split(//,$isbn13);</p>
<p>my $sum = ($isbn13[3] * 10) + (9 * $isbn13[4]) + (8 * $isbn13[5]) + (7 * $isbn13[6]) + (6 * $isbn13[7]) + (5   *   $isbn13[8]) +<br />
(4 * $isbn13[9]) + (3 * $isbn13[10]) + (2 * $isbn13[11]);</p>
<p>my $mode = int(($sum / 11) + 1);<br />
my $last = (11 * $mode) - $sum;<br />
if ($last == 10) {<br />
$last = &#8220;X&#8221;;<br />
} elsif ($last == 11) {<br />
$last = 0;<br />
}</p>
<p>my   $isbn10=&#8221;$isbn13[3]&#8220;.&#8221;$isbn13[4]&#8220;.&#8221;$isbn13[5]&#8220;.&#8221;$isbn13[6]&#8220;.&#8221;$isbn13[7]&#8220;.&#8221;$isbn13[8]&#8220;.&#8221;$isbn13[9]&#8220;.&#8221;$isbn13[10]&#8220;.&#8221;$isbn13[11]&#8220;.&#8221;$last&#8221;;<br />
return $isbn10;<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikezhang.com/2010/01/28/converting-isbn13-to-isbn10/feed</wfw:commentRss>
		</item>
		<item>
		<title>Computing Power Skirmish</title>
		<link>http://blog.mikezhang.com/2010/01/06/computing-power-skirmish</link>
		<comments>http://blog.mikezhang.com/2010/01/06/computing-power-skirmish#comments</comments>
		<pubDate>Wed, 06 Jan 2010 12:36:57 +0000</pubDate>
		<dc:creator>ET</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Information]]></category>

		<category><![CDATA[Research]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.mikezhang.com/?p=754</guid>
		<description><![CDATA[I have to make some heavy computations these days.  It gives me a chance to compare the computing power of my two computers.

On both machines, I have the same version of MySQL.  The program, written in Perl, conducts some complex calculations based on MySQL data.




Dell-Mac Skirmish



It is interesting to observe that my Macbook Pro actually [...]]]></description>
			<content:encoded><![CDATA[<div class="imageframe centered" style="width: 500px;">I have to make some heavy computations these days.  It gives me a chance to compare the computing power of my two computers.</div>
<div class="imageframe centered" style="width: 500px;"></div>
<div class="imageframe centered" style="width: 500px;">On both machines, I have the same version of MySQL.  The program, written in Perl, conducts some complex calculations based on MySQL data.</div>
<div class="imageframe centered" style="width: 500px;"></div>
<div style="text-align: center;">
<div class="imageframe centered" style="width: 500px;"><a href="http://blog.mikezhang.com/wp-content/uploads/computation.png" class="lightview" rel="gallery[754]" title="skirmish"><img class="attachment wp-att-755" src="http://blog.mikezhang.com/wp-content/uploads/computation.png" alt="skirmish" width="500" height="297" /></a></div>
<div class="imageframe centered" style="width: 500px;">
<div class="imagecaption">Dell-Mac Skirmish</div>
</div>
</div>
<div class="imageframe centered"></div>
<div class="imageframe centered">It is interesting to observe that my Macbook Pro actually performs better than my Dell Server.  The above figure shows 5 random sampling points, at which I count how many data records have been processed since last sampling.  Macbook constantly beats Dell.</div>
<div class="imageframe centered"></div>
<div class="imageframe centered">Here are the specs:</div>
<div class="imageframe centered"><strong>Dell:</strong></div>
<div class="imageframe centered">Dual Quad-Core Xeon CPU 2.33GHz, 32GB Memory, 1T HDD, Windows 7 64 Bit</div>
<div class="imageframe centered"><strong>Macbook Pro:</strong></div>
<div class="imageframe centered">Core 2 Duo Intel CPU 2.8GHz, 8GB Memory, 500G HDD, Snow Leopard 64 Bit</div>
<div class="imageframe centered">
</div>
<div class="imageframe centered"></div>
<div class="imageframe centered">Due to the nature of the program, only 1 CPU-Core can be used, this may explain the disadvantage of Dell. (Although it has 8 cores, 4 times that of the Macbook Pro.)</div>
<div class="imageframe centered">
</div>
<div class="imageframe centered">UPDATE:</div>
<div class="imageframe centered">A few more hours of data keep supporting the advantage of Macbook:</div>
<div class="imageframe centered">
<p style="text-align: center;"><a href="http://blog.mikezhang.com/wp-content/uploads/dellmac.png" class="lightview" rel="gallery[754]" title="dellmac"><img class="attachment wp-att-756 centered" src="http://blog.mikezhang.com/wp-content/uploads/dellmac.png" alt="dellmac" width="500" height="297" /></a></p>
</div>
<div class="imageframe centered"></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikezhang.com/2010/01/06/computing-power-skirmish/feed</wfw:commentRss>
		</item>
		<item>
		<title>Fully Utilizing My Computing Power</title>
		<link>http://blog.mikezhang.com/2010/01/05/fully-utilizing-my-computing-power</link>
		<comments>http://blog.mikezhang.com/2010/01/05/fully-utilizing-my-computing-power#comments</comments>
		<pubDate>Tue, 05 Jan 2010 06:50:15 +0000</pubDate>
		<dc:creator>ET</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Information]]></category>

		<category><![CDATA[Mac Tips]]></category>

		<category><![CDATA[Random Thoughts]]></category>

		<category><![CDATA[Research]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.mikezhang.com/?p=752</guid>
		<description><![CDATA[Before tweaking MySQL: it used 5% of the CPU and 250MB of the memory.
After tweaking, it uses 94.3% of the CPU and 2.33GB of the memory.
I could increase the memory use even more if I needed it.  



]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Before tweaking MySQL: it used 5% of the CPU and 250MB of the memory.</p>
<p style="text-align: left;">After tweaking, it uses 94.3% of the CPU and 2.33GB of the memory.</p>
<p style="text-align: left;">I could increase the memory use even more if I needed it. <img src='http://blog.mikezhang.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<p style="text-align: center;">
<p style="text-align: center;"><a href="http://blog.mikezhang.com/wp-content/uploads/screen-capture9.png" class="lightview" rel="gallery[752]" title="screen-capture9"><img class="attachment wp-att-753 centered" src="http://blog.mikezhang.com/wp-content/uploads/screen-capture9.thumbnail.png" alt="screen-capture9" width="500" height="380" /></a></p>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://blog.mikezhang.com/2010/01/05/fully-utilizing-my-computing-power/feed</wfw:commentRss>
		</item>
		<item>
		<title>Join Multiple PDF files to a Single One on Mac</title>
		<link>http://blog.mikezhang.com/2009/12/28/join-multiple-pdf-files-to-a-single-one-on-mac</link>
		<comments>http://blog.mikezhang.com/2009/12/28/join-multiple-pdf-files-to-a-single-one-on-mac#comments</comments>
		<pubDate>Mon, 28 Dec 2009 08:37:33 +0000</pubDate>
		<dc:creator>ET</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Information]]></category>

		<category><![CDATA[Mac Tips]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.mikezhang.com/?p=751</guid>
		<description><![CDATA[I downloaded an ebook, it contains hundreds of one-page pdf files.  I certainly don&#8217;t want to upload all of these one-pagers to my Kindle. To concatenate these files, there is no simply and easy way.  Commercial software packages are available from $14.00 to 20Euro.
A simply perl hack does the job:

Install the perl module:
perl -MCPAN -e [...]]]></description>
			<content:encoded><![CDATA[<p>I downloaded an ebook, it contains hundreds of one-page pdf files.  I certainly don&#8217;t want to upload all of these one-pagers to my Kindle. To concatenate these files, there is no simply and easy way.  Commercial software packages are available from $14.00 to 20Euro.</p>
<p>A simply perl hack does the job:</p>
<ol>
<li>Install the perl module:<br />
<code>perl -MCPAN -e 'install("PDF::Reuse")'</code></li>
<li>Create a perl program, call it &#8220;catpdf.pl&#8221;:<br />
<code><br />
use strict;<br />
use PDF::Reuse;</code></p>
<p>prFile(&#8221;output.pdf&#8221;);</p>
<p>for(@ARGV) {<br />
prDoc($_);<br />
}</p>
<p>prEnd();</li>
<li>To concatenate, call it in two possible ways:</li>
</ol>
<ul>
<li>perl catpdf.pl a.pdf b.pdf, or</li>
<li>perl catpdf.pl *.pdf</li>
</ul>
<p>&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>As a side note, it is really easy to concatenate mp3 files on mac, just do:<br />
<code>cat *.mp3>output.mp3</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikezhang.com/2009/12/28/join-multiple-pdf-files-to-a-single-one-on-mac/feed</wfw:commentRss>
		</item>
		<item>
		<title>Avatar</title>
		<link>http://blog.mikezhang.com/2009/12/24/avatar</link>
		<comments>http://blog.mikezhang.com/2009/12/24/avatar#comments</comments>
		<pubDate>Thu, 24 Dec 2009 01:30:22 +0000</pubDate>
		<dc:creator>ET</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.mikezhang.com/?p=750</guid>
		<description><![CDATA[The most memorable sentence, by the Colonel: &#8220;We will fight terror with terror.&#8221; It sounds so familiar. LOL.
If you have watched &#8220;Brave Heart&#8221;+&#8221;The Last of the Mohicans&#8221;+&#8221;Minority Report&#8221;, you pretty much miss nothing.
Overall, it is still a good movie.

]]></description>
			<content:encoded><![CDATA[<p>The most memorable sentence, by the Colonel: &#8220;We will fight terror with terror.&#8221; It sounds so familiar. LOL.</p>
<p>If you have watched &#8220;Brave Heart&#8221;+&#8221;The Last of the Mohicans&#8221;+&#8221;Minority Report&#8221;, you pretty much miss nothing.</p>
<p>Overall, it is still a good movie.</p>
<h3 class="r"><a href="http://en.wikipedia.org/wiki/The_Last_of_the_Mohicans" class="l" onmousedown="return clk(this.href,'','','res','1','','0CAoQFjAA')" onclick="javascript:pageTracker._trackPageview ('/outbound/en.wikipedia.org');"><em></em></a></h3>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikezhang.com/2009/12/24/avatar/feed</wfw:commentRss>
		</item>
		<item>
		<title>Time is the Coin of Your Life</title>
		<link>http://blog.mikezhang.com/2009/12/07/time-is-the-coin-of-your-life</link>
		<comments>http://blog.mikezhang.com/2009/12/07/time-is-the-coin-of-your-life#comments</comments>
		<pubDate>Mon, 07 Dec 2009 10:13:15 +0000</pubDate>
		<dc:creator>ET</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Life]]></category>

		<category><![CDATA[Pic-A-Day]]></category>

		<guid isPermaLink="false">http://blog.mikezhang.com/?p=749</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://blog.mikezhang.com/wp-content/uploads/time_is_the_coin_of_your_life_you_spend_it_do_not_allow_others_to_spend_it_for_you-carl_sandburg-480x360-20091207.png" class="lightview" rel="gallery[749]" title="time_is_the_coin_of_your_life_you_spend_it_do_not_allow_others_to_spend_it_for_you-carl_sandburg-480x360-20091207"><img class="attachment wp-att-748 centered" src="http://blog.mikezhang.com/wp-content/uploads/time_is_the_coin_of_your_life_you_spend_it_do_not_allow_others_to_spend_it_for_you-carl_sandburg-480x360-20091207.png" alt="time_is_the_coin_of_your_life_you_spend_it_do_not_allow_others_to_spend_it_for_you-carl_sandburg-480x360-20091207" width="480" height="360" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikezhang.com/2009/12/07/time-is-the-coin-of-your-life/feed</wfw:commentRss>
		</item>
		<item>
		<title>A Test of Writer in Windows 7</title>
		<link>http://blog.mikezhang.com/2009/11/07/a-test-of-writer-in-windows-7</link>
		<comments>http://blog.mikezhang.com/2009/11/07/a-test-of-writer-in-windows-7#comments</comments>
		<pubDate>Sat, 07 Nov 2009 11:12:08 +0000</pubDate>
		<dc:creator>ET</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.mikezhang.com/?p=745</guid>
		<description><![CDATA[&#160;
 
Astro Boy is in the cinema now.&#160; I’m not sure if it is as good as the 2-D version that I watched many years ago.&#160; I somehow have the feeling that 3-D movies can never beat 2-D movies because of the special room left for imagination in 2-D.

]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p><a href="http://blog.mikezhang.com/wp-content/uploads/atom1.jpg" class="lightview" rel="gallery[745]" rel="lightview"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="atom1" border="0" alt="atom1" src="http://blog.mikezhang.com/wp-content/uploads/atom1-thumb.jpg" width="260" height="260" /></a> </p>
<p>Astro Boy is in the cinema now.&#160; I’m not sure if it is as good as the 2-D version that I watched many years ago.&#160; I somehow have the feeling that 3-D movies can never beat 2-D movies because of the special room left for imagination in 2-D.</p>
<div style="padding-bottom: 0px; margin: 0px auto; padding-left: 0px; width: 350px; padding-right: 0px; display: block; float: none; padding-top: 0px" id="scid:84E294D0-71C9-4bd0-A0FE-95764E0368D9:80f4cf5c-399d-4065-b439-8899267fb718" class="wlWriterEditableSmartContent"><a href="http://www.bing.com/maps/default.aspx?v=2&amp;cp=22.26781~114.3117&amp;lvl=12&amp;style=r&amp;sp=aN.22.28179_114.2915_Clearwater%2520Bay_&amp;mkt=en-us&amp;FORM=LLWR" id="map-55c6b2ce-4b83-42cc-9462-a6d6c0572ce7" alt="????" title="????" onclick="javascript:pageTracker._trackPageview ('/outbound/www.bing.com');"><img src="http://blog.mikezhang.com/wp-content/uploads/map55d9113bc751.jpg" width="320" height="240" alt="????"/></a></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikezhang.com/2009/11/07/a-test-of-writer-in-windows-7/feed</wfw:commentRss>
		</item>
		<item>
		<title>RIP: Dr. Tsien Hsue-shen (Qian Xuesen)</title>
		<link>http://blog.mikezhang.com/2009/11/01/rip-dr-tsien-hsue-shen-qian-xuesen</link>
		<comments>http://blog.mikezhang.com/2009/11/01/rip-dr-tsien-hsue-shen-qian-xuesen#comments</comments>
		<pubDate>Sun, 01 Nov 2009 13:30:15 +0000</pubDate>
		<dc:creator>ET</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Information]]></category>

		<category><![CDATA[Random Thoughts]]></category>

		<guid isPermaLink="false">http://blog.mikezhang.com/?p=740</guid>
		<description><![CDATA[Dr. Tsien Hsue-shen (also spelled as Qian Xuesen) passed away yesterday.
To me, he is as legendary as John Nash. A movie based on his life would also be highly appropriate named &#8220;A Beautiful Mind&#8221;.

Interestingly, both Nash and Tsien were affiliated with MIT.  It was 2008 when I last visited Hang Zhou, the hometown of Tsien, [...]]]></description>
			<content:encoded><![CDATA[<p>Dr. <a href="http://en.wikipedia.org/wiki/Tsien_Hsue-shen" onclick="javascript:pageTracker._trackPageview ('/outbound/en.wikipedia.org');">Tsien Hsue-shen</a> (also spelled as Qian Xuesen) passed away yesterday.</p>
<p>To me, he is as legendary as <a href="http://en.wikipedia.org/wiki/John_Forbes_Nash,_Jr." onclick="javascript:pageTracker._trackPageview ('/outbound/en.wikipedia.org');">John Nash</a>. A movie based on his life would also be highly appropriate named &#8220;A Beautiful Mind&#8221;.</p>
<p style="text-align: center;"><a href="http://blog.mikezhang.com/wp-content/uploads/qian.jpg" class="lightview" rel="gallery[740]" title="qian"><img class="attachment wp-att-741 centered" src="http://blog.mikezhang.com/wp-content/uploads/qian.thumbnail.jpg" alt="qian" width="500" height="375" /></a></p>
<p>Interestingly, both Nash and Tsien were affiliated with MIT.  It was 2008 when I last visited Hang Zhou, the hometown of Tsien, I visited the memorial museum (called Qian King Temple) dedicated to Tsien&#8217;s ancestor <a href="http://en.wikipedia.org/wiki/Qian_Liu" onclick="javascript:pageTracker._trackPageview ('/outbound/en.wikipedia.org');">Qian Liu</a>.  I found Tsien&#8217;s Certificate of Master of Science, conferred in December, 1936.  The design hasn&#8217;t changed a bit for so many years.  It looks exactly the same as my certificate which I got in 2006, almost 70 years after Tsien got his. I cannot express how proud I was while looking at that certificate.</p>
<p>Tsien is a very typical Chinese scientist, smart, hard-working and humble. He kept a very low profile despite his great achievements.   Great achievements comes with great social responsibility, he sets a great example for anyone who cares to call himself/herself a scientist.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikezhang.com/2009/11/01/rip-dr-tsien-hsue-shen-qian-xuesen/feed</wfw:commentRss>
		</item>
		<item>
		<title>Sleepy</title>
		<link>http://blog.mikezhang.com/2009/09/21/sleepy</link>
		<comments>http://blog.mikezhang.com/2009/09/21/sleepy#comments</comments>
		<pubDate>Mon, 21 Sep 2009 03:42:30 +0000</pubDate>
		<dc:creator>ET</dc:creator>
		
		<category><![CDATA[Art]]></category>

		<category><![CDATA[Pic-A-Day]]></category>

		<category><![CDATA[Play]]></category>

		<category><![CDATA[Random Thoughts]]></category>

		<guid isPermaLink="false">http://blog.mikezhang.com/?p=736</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://blog.mikezhang.com/wp-content/uploads/screen-capture8.png" class="lightview" rel="gallery[736]" title="screen-capture8"><img class="attachment wp-att-737 centered" src="http://blog.mikezhang.com/wp-content/uploads/screen-capture8.thumbnail.png" alt="screen-capture8" width="499" height="520" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikezhang.com/2009/09/21/sleepy/feed</wfw:commentRss>
		</item>
		<item>
		<title>BibTeX Title Capitalization (Uppercase) Tool</title>
		<link>http://blog.mikezhang.com/2009/08/26/bibtex-title-capitalization-uppercase-tool</link>
		<comments>http://blog.mikezhang.com/2009/08/26/bibtex-title-capitalization-uppercase-tool#comments</comments>
		<pubDate>Wed, 26 Aug 2009 06:24:15 +0000</pubDate>
		<dc:creator>ET</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.mikezhang.com/?p=733</guid>
		<description><![CDATA[I type my BiBTeX entries carefully, but different journals may have different requirements for capitalizing paper titles.
Some would like a plain format, like
Some, Author, 2009, &#8220;Capitalizing BibTeX titles: A simple tool,&#8221; Science, 110(1), 1-20.
Some Bibtex class files may automatically lowercase all words after the first, so the title looks like:
&#8220;Capitalizing bibtex titles: a simple tool,&#8221;
To [...]]]></description>
			<content:encoded><![CDATA[<p>I type my BiBTeX entries carefully, but different journals may have different requirements for capitalizing paper titles.</p>
<p>Some would like a plain format, like<br />
Some, Author, 2009, &#8220;Capitalizing <span style="color: #ff0000;">BibTeX</span> titles: <span style="color: #ff0000;">A</span> simple tool,&#8221; Science, 110(1), 1-20.</p>
<p>Some Bibtex class files may automatically lowercase all words after the first, so the title looks like:<br />
&#8220;Capitalizing <span style="color: #ff0000;">bibtex</span> titles: <span style="color: #ff0000;">a</span> simple tool,&#8221;</p>
<p>To make the title correct, we can add curly brackets, and change the title as:<br />
&#8220;Capitalizing {B}ib{T}e{X} titles: {A} simple tool,&#8221;</p>
<p>This helps to address the issue, but what if a journal requires all first Characters to be capitalized? like this:<br />
&#8220;Capitalizing BibTeX <span style="color: #ff0000;">Titles</span>: A Simple <span style="color: #ff0000;">Tool</span>,&#8221;</p>
<p>It is not hard to write a program to capitalize all words, but then there are complications, like the following case:<br />
&#8220;Capitalizing BibTeX titles <span style="color: #ff0000;">for</span> Some Journals: A Simple <span style="color: #ff0000;">and</span> Intuitive Tool,&#8221;</p>
<p>In the above example, &#8220;for&#8221;, and &#8220;and&#8221; should not be capitalized.</p>
<p>In another example,<br />
&#8220;Capitalizing BibTeX titles for Some Journals: Vote <span style="color: #ff0000;">For</span> <span style="color: #ff0000;">a</span> Solution,&#8221;</p>
<p>The second &#8220;For&#8221; should be capitalized, but &#8220;a&#8221; should not be capitalized.</p>
<p>So some intelligence is needed to convert the titles.  That&#8217;s why I wrote this tool that correctly capitalize the titles.</p>
<p>The location of the tool is: <a href="http://blog.mikezhang.com/dcolumn/bibcapital.cgi">http://blog.mikezhang.com/dcolumn/bibcapital.cgi</a>.</p>
<p>There are some example entries in the box, just click &#8220;submit&#8221;, see how it works.</p>
<p>To process your file, simply copy and paste into and from this text box.</p>
<p>Again, this tool is offered as is. If you find it useful, that&#8217;s great.  If you have problems with it, please talk to my friend Feng Zhu, he helped me to debug this tool, I&#8217;m going to hold him responsible for additional bugs.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikezhang.com/2009/08/26/bibtex-title-capitalization-uppercase-tool/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
