<?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 Tapdancing Goats</title>
	<atom:link href="http://www.tapdancinggoats.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tapdancinggoats.com</link>
	<description>A parfait of physics, Linux, LaTeX, and coding tips large and small.</description>
	<lastBuildDate>Wed, 25 Jan 2012 11:05:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on Bold vectors in LaTeX by Mark</title>
		<link>http://www.tapdancinggoats.com/bold-vectors-in-latex.htm/comment-page-1#comment-36813</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Wed, 25 Jan 2012 11:05:34 +0000</pubDate>
		<guid isPermaLink="false">http://tapdancinggoats.com/?p=12#comment-36813</guid>
		<description>This, you might say, has the disadvantage that \boldsymbol leaves the Latin letters in italic font.

However, it is possible to combine both effects by simply applying both commands as I just found out. The resulting \vec redefinition would be:

\let\oldhat\hat
\renewcommand{\vec}[1]{\boldsymbol{\mathbf{#1}}}
\renewcommand{\hat}[1]{\oldhat{\boldsymbol{\mathbf{#1}}}}</description>
		<content:encoded><![CDATA[<p>This, you might say, has the disadvantage that \boldsymbol leaves the Latin letters in italic font.</p>
<p>However, it is possible to combine both effects by simply applying both commands as I just found out. The resulting \vec redefinition would be:</p>
<p>\let\oldhat\hat<br />
\renewcommand{\vec}[1]{\boldsymbol{\mathbf{#1}}}<br />
\renewcommand{\hat}[1]{\oldhat{\boldsymbol{\mathbf{#1}}}}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bold vectors in LaTeX by Mark</title>
		<link>http://www.tapdancinggoats.com/bold-vectors-in-latex.htm/comment-page-1#comment-36812</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Wed, 25 Jan 2012 10:55:16 +0000</pubDate>
		<guid isPermaLink="false">http://tapdancinggoats.com/?p=12#comment-36812</guid>
		<description>Thanks!

Works fine for Latin letters. But the Greek letters will be displayed as if no \vec{} was applied.

An alternative to \mathbf is \boldsymbol which makes everything bold including the Greek letters. So just replace \mathbf by \boldsymbol if you want that effect.</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
<p>Works fine for Latin letters. But the Greek letters will be displayed as if no \vec{} was applied.</p>
<p>An alternative to \mathbf is \boldsymbol which makes everything bold including the Greek letters. So just replace \mathbf by \boldsymbol if you want that effect.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fox &amp; Geese in Haskell: Part 2 by Alex</title>
		<link>http://www.tapdancinggoats.com/fox-geese-in-haskell-part-2.htm/comment-page-1#comment-36712</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 23 Jan 2012 16:35:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.tapdancinggoats.com/?p=684#comment-36712</guid>
		<description>That&#039;s great, thanks. I need to find some time to update this and finish the series. </description>
		<content:encoded><![CDATA[<p>That&#8217;s great, thanks. I need to find some time to update this and finish the series.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remember the Reason for the Season by Alex</title>
		<link>http://www.tapdancinggoats.com/remember-the-reason-for-the-season.htm/comment-page-1#comment-36711</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 23 Jan 2012 16:33:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.tapdancinggoats.com/?p=746#comment-36711</guid>
		<description>Thanks! </description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fox &amp; Geese in Haskell: Part 2 by someguy</title>
		<link>http://www.tapdancinggoats.com/fox-geese-in-haskell-part-2.htm/comment-page-1#comment-36651</link>
		<dc:creator>someguy</dc:creator>
		<pubDate>Sun, 22 Jan 2012 21:18:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.tapdancinggoats.com/?p=684#comment-36651</guid>
		<description>Also, cool game!</description>
		<content:encoded><![CDATA[<p>Also, cool game!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fox &amp; Geese in Haskell: Part 2 by someguy</title>
		<link>http://www.tapdancinggoats.com/fox-geese-in-haskell-part-2.htm/comment-page-1#comment-36650</link>
		<dc:creator>someguy</dc:creator>
		<pubDate>Sun, 22 Jan 2012 21:17:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.tapdancinggoats.com/?p=684#comment-36650</guid>
		<description>in order for it to work with the latest release, you should change the &quot;gameInWindow&quot; function of the main for the new &quot;play&quot;.
replacing the main by:

dis = InWindow &quot;Fox &amp; Geese&quot; windowSize windowPos

main = play
       dis
       white
       10
       (newGameState ((fromIntegral (fst windowSize)), (fromIntegral (snd windowSize))))
       drawGame
       handleInputEvent
       gameStep</description>
		<content:encoded><![CDATA[<p>in order for it to work with the latest release, you should change the &#8220;gameInWindow&#8221; function of the main for the new &#8220;play&#8221;.<br />
replacing the main by:</p>
<p>dis = InWindow &#8220;Fox &amp; Geese&#8221; windowSize windowPos</p>
<p>main = play<br />
       dis<br />
       white<br />
       10<br />
       (newGameState ((fromIntegral (fst windowSize)), (fromIntegral (snd windowSize))))<br />
       drawGame<br />
       handleInputEvent<br />
       gameStep</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remember the Reason for the Season by someguy</title>
		<link>http://www.tapdancinggoats.com/remember-the-reason-for-the-season.htm/comment-page-1#comment-36642</link>
		<dc:creator>someguy</dc:creator>
		<pubDate>Sun, 22 Jan 2012 19:44:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.tapdancinggoats.com/?p=746#comment-36642</guid>
		<description>(comment not related to this post at all)

I just discovered your blog while googling a problem i had with latex. It&#039;s great!. Definitely the coolest blog i&#039;ve read in a while.
Keep up.

A fan</description>
		<content:encoded><![CDATA[<p>(comment not related to this post at all)</p>
<p>I just discovered your blog while googling a problem i had with latex. It&#8217;s great!. Definitely the coolest blog i&#8217;ve read in a while.<br />
Keep up.</p>
<p>A fan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Easy Scientific Notation In LaTeX by Katie</title>
		<link>http://www.tapdancinggoats.com/easy-scientific-notation-in-latex.htm/comment-page-1#comment-29491</link>
		<dc:creator>Katie</dc:creator>
		<pubDate>Wed, 16 Nov 2011 18:24:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.tapdancinggoats.com/easy-scientific-notation-in-latex.htm#comment-29491</guid>
		<description>Thank you! Just used this in my Master&#039;s Thesis!</description>
		<content:encoded><![CDATA[<p>Thank you! Just used this in my Master&#8217;s Thesis!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on So You Occupied Wall Street?  Now What? by Edwin</title>
		<link>http://www.tapdancinggoats.com/so-you-occupied-wall-street-now-what.htm/comment-page-1#comment-29259</link>
		<dc:creator>Edwin</dc:creator>
		<pubDate>Sun, 13 Nov 2011 04:40:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.tapdancinggoats.com/?p=731#comment-29259</guid>
		<description>This is a farce. To think this is a waste of time for activists is naive at least. 
Sure they are disorganized, but unlike the tea party, they didn&#039;t have the benefit of top-down organization. 
Sure their demands are nebulous, but if you look at the published demands (they are published), they become much less so. 
Sure sleeping in a tent on public ground does not seem like a useful activity for those wanting to change the world, but most every other system for change has inherent flaws built into it--giving the leaders of the movement a stake in the system they&#039;re trying to dismantle, giving those with money a long head start against those without it, etc.
The reality is that ows movements throughout the world will not survive the winter if activists don&#039;t support them with sources of shelter, heat, food and legal protection. It doesn&#039;t matter that the same people stay there throughout the winter, just that enough people stay there to prevent marginalization. Once spring and summer hit, the people will flock in droves to camp in support ows.
If people don&#039;t think this will have an effect, wait until next year&#039;s election. IF ows makes it through the winter, it will be the primary driving force in the election, forcing progressive wins across the US at every level of govt. And if that isn&#039;t something you want to see, then gtfo.</description>
		<content:encoded><![CDATA[<p>This is a farce. To think this is a waste of time for activists is naive at least.<br />
Sure they are disorganized, but unlike the tea party, they didn&#8217;t have the benefit of top-down organization.<br />
Sure their demands are nebulous, but if you look at the published demands (they are published), they become much less so.<br />
Sure sleeping in a tent on public ground does not seem like a useful activity for those wanting to change the world, but most every other system for change has inherent flaws built into it&#8211;giving the leaders of the movement a stake in the system they&#8217;re trying to dismantle, giving those with money a long head start against those without it, etc.<br />
The reality is that ows movements throughout the world will not survive the winter if activists don&#8217;t support them with sources of shelter, heat, food and legal protection. It doesn&#8217;t matter that the same people stay there throughout the winter, just that enough people stay there to prevent marginalization. Once spring and summer hit, the people will flock in droves to camp in support ows.<br />
If people don&#8217;t think this will have an effect, wait until next year&#8217;s election. IF ows makes it through the winter, it will be the primary driving force in the election, forcing progressive wins across the US at every level of govt. And if that isn&#8217;t something you want to see, then gtfo.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Double Pendula by Alex</title>
		<link>http://www.tapdancinggoats.com/double-pendula/comment-page-1#comment-28003</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Wed, 26 Oct 2011 02:32:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.tapdancinggoats.com#comment-28003</guid>
		<description>IE before version 9 didn&#039;t support the canvas element that I used for the graphics.  I used some javascript that is supposed to load a plugin so that the canvas tag works in IE 8 and 7, but I guess it doesn&#039;t work correctly.  I don&#039;t have a windows computer to test it on, so thanks for letting me know.</description>
		<content:encoded><![CDATA[<p>IE before version 9 didn&#8217;t support the canvas element that I used for the graphics.  I used some javascript that is supposed to load a plugin so that the canvas tag works in IE 8 and 7, but I guess it doesn&#8217;t work correctly.  I don&#8217;t have a windows computer to test it on, so thanks for letting me know.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

