<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Bill's Techno Blog</title>
	<atom:link href="http://www.billbaxter.com/techblog/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.billbaxter.com/techblog</link>
	<description>Technical, as in fun at parties</description>
	<lastBuildDate>Tue, 04 May 2010 19:10:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on LaTex in WordPress with PHP5.x by Ulf Hamster</title>
		<link>http://www.billbaxter.com/techblog/?p=5&#038;cpage=1#comment-350</link>
		<dc:creator>Ulf Hamster</dc:creator>
		<pubDate>Tue, 04 May 2010 19:10:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.billbaxter.com/techblog/?p=5#comment-350</guid>
		<description>Hello Bill

there is general way to handle the escape character problem. You can use PHP&#039;s str_replace function to backslashes, i.e. take the formula string and add for any \n, \r, \t, \v, \f, \\, \$, \&quot;, \[ und \x etc (that are all escape characters) an additional backslash.

for example. Before passing $latex_formula to wrap_formula($latex_formula), run $latex_formula=latexescapedebug($latex_formula)


function latexescapedebug($tex){ 
$tex = str_replace(&quot;\n&quot;,&quot;\\n&quot;,$tex); 
$tex = str_replace(&quot;\r&quot;,&quot;\\r&quot;,$tex); 
$tex = str_replace(&quot;\t&quot;,&quot;\\t&quot;,$tex); 
$tex = str_replace(&quot;\v&quot;,&quot;\\v&quot;,$tex); 
$tex = str_replace(&quot;\f&quot;,&quot;\\f&quot;,$tex); 
$tex = str_replace(&quot;\$&quot;,&quot;\\$&quot;,$tex); 
$tex = str_replace(&quot;\[&quot;,&quot;\\[&quot;,$tex); 
$tex = str_replace(&quot;\x&quot;,&quot;\\x&quot;,$tex); 
$tex = str_replace(&quot;\ &quot;,&quot;\\\ &quot;,$tex); 
return $tex; 
}


inside wrap_formula() you might try

function wrap_formula($latex_formula) {
...
$string .= &quot;\begin{document}\n&quot;;
$string .= &quot;$&quot;.latexescapedebug($latex_formula).&quot;$\n&quot;;
$string .= &quot;\end{document}\n&quot;;
...
}

I have not tried it so far. if it doesn&#039;t work this will work (it works for me). Add the latexescapedebug inside the latex.php file and add this in the first line.

function latex_content($text) {
$text = latexescapedebug($text);  //First Line
...
}</description>
		<content:encoded><![CDATA[<p>Hello Bill</p>
<p>there is general way to handle the escape character problem. You can use PHP&#8217;s str_replace function to backslashes, i.e. take the formula string and add for any \n, \r, \t, \v, \f, \\, \$, \&#8221;, \[ und \x etc (that are all escape characters) an additional backslash.</p>
<p>for example. Before passing $latex_formula to wrap_formula($latex_formula), run $latex_formula=latexescapedebug($latex_formula)</p>
<p>function latexescapedebug($tex){<br />
$tex = str_replace(&#8220;\n&#8221;,&#8221;\\n&#8221;,$tex);<br />
$tex = str_replace(&#8220;\r&#8221;,&#8221;\\r&#8221;,$tex);<br />
$tex = str_replace(&#8220;\t&#8221;,&#8221;\\t&#8221;,$tex);<br />
$tex = str_replace(&#8220;\v&#8221;,&#8221;\\v&#8221;,$tex);<br />
$tex = str_replace(&#8220;\f&#8221;,&#8221;\\f&#8221;,$tex);<br />
$tex = str_replace(&#8220;\$&#8221;,&#8221;\\$&#8221;,$tex);<br />
$tex = str_replace(&#8220;\[&#8220;,&#8221;\\[&#8220;,$tex);<br />
$tex = str_replace(&#8220;\x&#8221;,&#8221;\\x&#8221;,$tex);<br />
$tex = str_replace(&#8220;\ &#8220;,&#8221;\\\ &#8220;,$tex);<br />
return $tex;<br />
}</p>
<p>inside wrap_formula() you might try</p>
<p>function wrap_formula($latex_formula) {<br />
&#8230;<br />
$string .= &#8220;\begin{document}\n&#8221;;<br />
$string .= &#8220;$&#8221;.latexescapedebug($latex_formula).&#8221;$\n&#8221;;<br />
$string .= &#8220;\end{document}\n&#8221;;<br />
&#8230;<br />
}</p>
<p>I have not tried it so far. if it doesn&#8217;t work this will work (it works for me). Add the latexescapedebug inside the latex.php file and add this in the first line.</p>
<p>function latex_content($text) {<br />
$text = latexescapedebug($text);  //First Line<br />
&#8230;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cropping pdf files by admin</title>
		<link>http://www.billbaxter.com/techblog/?p=30&#038;cpage=1#comment-320</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 28 Apr 2010 14:26:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.billbaxter.com/techblog/?p=30#comment-320</guid>
		<description>Yeh, Inkscape is great, and its PDF export is pretty good too.  I use it a lot for making figures for my pdfLaTeX papers.  Unfortunately I don&#039;t find its PDF import to be so great.  So if you&#039;re starting with PDF from some other source (like PowerPoint saved as PDF) then it doesn&#039;t work so well as a way to crop.</description>
		<content:encoded><![CDATA[<p>Yeh, Inkscape is great, and its PDF export is pretty good too.  I use it a lot for making figures for my pdfLaTeX papers.  Unfortunately I don&#8217;t find its PDF import to be so great.  So if you&#8217;re starting with PDF from some other source (like PowerPoint saved as PDF) then it doesn&#8217;t work so well as a way to crop.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cropping pdf files by Daniel</title>
		<link>http://www.billbaxter.com/techblog/?p=30&#038;cpage=1#comment-319</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Wed, 28 Apr 2010 06:46:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.billbaxter.com/techblog/?p=30#comment-319</guid>
		<description>Inkscape can import and export SVG, is crossplatform and very powerful.

http://www.inkscape.org/</description>
		<content:encoded><![CDATA[<p>Inkscape can import and export SVG, is crossplatform and very powerful.</p>
<p><a href="http://www.inkscape.org/" rel="nofollow">http://www.inkscape.org/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Category-specifc RSS feeds from WordPress by admin</title>
		<link>http://www.billbaxter.com/techblog/?p=27&#038;cpage=1#comment-241</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 03 Feb 2010 14:01:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.billbaxter.com/techblog/?p=27#comment-241</guid>
		<description>@wirabumi - If you mean how to get Wordpress to supply RSS feeds, it does that automatically.  You shouldn&#039;t have to set up anything.   If you mean how to subscribe to an RSS feed, there are many RSS readers.  I use &lt;a href=&quot;http://google.com/reader&quot; rel=&quot;nofollow&quot;&gt;Google Reader&lt;/a&gt;, myself.</description>
		<content:encoded><![CDATA[<p>@wirabumi &#8211; If you mean how to get Wordpress to supply RSS feeds, it does that automatically.  You shouldn&#8217;t have to set up anything.   If you mean how to subscribe to an RSS feed, there are many RSS readers.  I use <a href="http://google.com/reader" rel="nofollow">Google Reader</a>, myself.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Category-specifc RSS feeds from WordPress by Vernell Cooper</title>
		<link>http://www.billbaxter.com/techblog/?p=27&#038;cpage=1#comment-240</link>
		<dc:creator>Vernell Cooper</dc:creator>
		<pubDate>Tue, 02 Feb 2010 14:03:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.billbaxter.com/techblog/?p=27#comment-240</guid>
		<description>Kudos from one braniac to another. :)</description>
		<content:encoded><![CDATA[<p>Kudos from one braniac to another. <img src='http://www.billbaxter.com/techblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Category-specifc RSS feeds from WordPress by wirabumi</title>
		<link>http://www.billbaxter.com/techblog/?p=27&#038;cpage=1#comment-239</link>
		<dc:creator>wirabumi</dc:creator>
		<pubDate>Mon, 11 Jan 2010 23:38:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.billbaxter.com/techblog/?p=27#comment-239</guid>
		<description>i read your post but still don&#039;t understand what is the meaning..
how to set up the rss feed? do you have any step by step tutorial for newbe like me? thanks</description>
		<content:encoded><![CDATA[<p>i read your post but still don&#8217;t understand what is the meaning..<br />
how to set up the rss feed? do you have any step by step tutorial for newbe like me? thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Inverse Kinematics by Nate</title>
		<link>http://www.billbaxter.com/techblog/?p=21&#038;cpage=1#comment-235</link>
		<dc:creator>Nate</dc:creator>
		<pubDate>Tue, 12 May 2009 09:46:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.billbaxter.com/techblog/?p=21#comment-235</guid>
		<description>http://dynamicnetcreations.com/experiments/awayarm/

I put together another demo and thought you might be interested.</description>
		<content:encoded><![CDATA[<p><a href="http://dynamicnetcreations.com/experiments/awayarm/" rel="nofollow">http://dynamicnetcreations.com/experiments/awayarm/</a></p>
<p>I put together another demo and thought you might be interested.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Category-specifc RSS feeds from WordPress by H. Ken</title>
		<link>http://www.billbaxter.com/techblog/?p=27&#038;cpage=1#comment-233</link>
		<dc:creator>H. Ken</dc:creator>
		<pubDate>Wed, 08 Apr 2009 03:14:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.billbaxter.com/techblog/?p=27#comment-233</guid>
		<description>Nice. Wondering if you can add this as a module on the left.</description>
		<content:encoded><![CDATA[<p>Nice. Wondering if you can add this as a module on the left.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LaTex in WordPress with PHP5.x by Michael Nielsen</title>
		<link>http://www.billbaxter.com/techblog/?p=5&#038;cpage=1#comment-232</link>
		<dc:creator>Michael Nielsen</dc:creator>
		<pubDate>Wed, 11 Mar 2009 16:35:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.billbaxter.com/techblog/?p=5#comment-232</guid>
		<description>Problem solved.  I uninstalled everything, and did a completely fresh install, using the latest version.  Works fine.

Thankyou for your help - I&#039;m guessing it was this post that ensured the latest version of LatexRender works with PHP 5.</description>
		<content:encoded><![CDATA[<p>Problem solved.  I uninstalled everything, and did a completely fresh install, using the latest version.  Works fine.</p>
<p>Thankyou for your help &#8211; I&#8217;m guessing it was this post that ensured the latest version of LatexRender works with PHP 5.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LaTex in WordPress with PHP5.x by Michael Nielsen</title>
		<link>http://www.billbaxter.com/techblog/?p=5&#038;cpage=1#comment-230</link>
		<dc:creator>Michael Nielsen</dc:creator>
		<pubDate>Wed, 11 Mar 2009 15:59:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.billbaxter.com/techblog/?p=5#comment-230</guid>
		<description>A final fact, which I only just noticed: the only formulas affected seem to be ones with an f in them. Other things parse okay.  

I am using version 1.0 of LatexRender, although the file class.latexrender.php has a header which says it&#039;s version 0.8.</description>
		<content:encoded><![CDATA[<p>A final fact, which I only just noticed: the only formulas affected seem to be ones with an f in them. Other things parse okay.  </p>
<p>I am using version 1.0 of LatexRender, although the file class.latexrender.php has a header which says it&#8217;s version 0.8.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
