<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tapdancing Goats &#187; thesis</title>
	<atom:link href="http://www.tapdancinggoats.com/tag/thesis/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 03:14:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Easy Scientific Notation In LaTeX</title>
		<link>http://www.tapdancinggoats.com/easy-scientific-notation-in-latex.htm</link>
		<comments>http://www.tapdancinggoats.com/easy-scientific-notation-in-latex.htm#comments</comments>
		<pubDate>Fri, 02 Mar 2007 21:46:30 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Math]]></category>
		<category><![CDATA[Physics]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[scientific notation]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://www.tapdancinggoats.com/easy-scientific-notation-in-latex.htm</guid>
		<description><![CDATA[I use LaTeX for all my physics homework and lab reports, and I&#8217;ll be using it for a master&#8217;s thesis in the next few years, so I&#8217;m constantly adding to my library of LaTeX commands to save some typing. Here&#8217;s a good one when you need to use scientific or engineering notation. Put the following [...]]]></description>
			<content:encoded><![CDATA[<p>I use LaTeX for all my physics homework and lab reports, and I&#8217;ll be using it for a master&#8217;s thesis in the next few years, so I&#8217;m constantly adding to my library of LaTeX commands to save some typing.  Here&#8217;s a good one when you need to use scientific or engineering notation.  Put the following in the document preamble (before <tt>\begin{document}</tt>):</p>

<div class="dean_ch" style="white-space: wrap;"><br />
<span class="re2">\providecommand</span>{<span class="re3"><span class="re2">\e</span>}[<span class="re4">1</span>]{<span class="re2">\ensuremath</span>{<span class="re2">\times</span> 10^{#1}}</span>}<br />
&nbsp;</div>

<p>Then, typing</p>

<div class="dean_ch" style="white-space: wrap;"><br />
The [<span class="re4">111</span>] crystal planes are 3.2<span class="re2">\e</span>{<span class="re3">-10</span>} m apart.<br />
&nbsp;</div>

<p>gives you:
<samp>
The [111] crystal planes are 3.2&#215;10<sup>-10</sup> m apart.
</samp>
whether or not you&#8217;re already in a math environment.  If the exponent is just one number, you can omit the braces, like this: <tt>3\e8 m/s</tt>.  Cool, huh?</p>

<p>(Of course, for 10<sup>-10</sup> m you can just use Angstroms, <tt>\AA</tt>.  If you&#8217;re in a math environment, use <tt>\text{\AA}</tt>, or else the circle won&#8217;t line up with the A.  That is, if you&#8217;re okay with non-SI units.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tapdancinggoats.com/easy-scientific-notation-in-latex.htm/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Bold vectors in LaTeX</title>
		<link>http://www.tapdancinggoats.com/bold-vectors-in-latex.htm</link>
		<comments>http://www.tapdancinggoats.com/bold-vectors-in-latex.htm#comments</comments>
		<pubDate>Tue, 13 Feb 2007 02:26:53 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Math]]></category>
		<category><![CDATA[Physics]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[vector]]></category>

		<guid isPermaLink="false">http://tapdancinggoats.com/?p=12</guid>
		<description><![CDATA[Vectors can be typeset in LaTeX with the command \vec, which decorates the argument with a little arrow. This was cute at first, but it doesn&#8217;t look very good, especially in fractions. Textbooks use bold face for vectors, so here&#8217;s how to do that in LaTeX. \let\oldhat\hat \renewcommand{\vec}[1]{\mathbf{#1}} \renewcommand{\hat}[1]{\oldhat{\mathbf{#1}}} This also makes unit vectors (typeset [...]]]></description>
			<content:encoded><![CDATA[<p>
Vectors can be typeset in LaTeX with the command <tt>\vec</tt>, which decorates the argument with a little arrow.  This was cute at first, but it doesn&#8217;t look very good, especially in fractions.  Textbooks use bold face for vectors, so here&#8217;s how to do that in LaTeX.
</p>

<div class="dean_ch" style="white-space: wrap;"><span class="re2">\let</span><span class="re2">\oldhat</span><span class="re2">\hat</span><br />
<span class="re2">\renewcommand</span>{<span class="re3"><span class="re2">\vec</span>}[<span class="re4">1</span>]{<span class="re2">\mathbf</span>{#1}</span>}<br />
<span class="re2">\renewcommand</span>{<span class="re3"><span class="re2">\hat</span>}[<span class="re4">1</span>]{<span class="re2">\oldhat</span>{<span class="re2">\mathbf</span>{#1}}</span>}</div>

<p>
This also makes unit vectors (typeset with <tt>\hat</tt>) bold.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tapdancinggoats.com/bold-vectors-in-latex.htm/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

