<?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>Diaeresis &#8211; Henry Poon&#039;s Blog</title>
	<atom:link href="https://blog.henrypoon.com/blog/tag/diaeresis/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.henrypoon.com</link>
	<description></description>
	<lastBuildDate>Mon, 03 Oct 2022 14:48:50 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
<site xmlns="com-wordpress:feed-additions:1">83044199</site>	<item>
		<title>Really Handy LaTeX Commands</title>
		<link>https://blog.henrypoon.com/blog/2011/08/21/really-handy-latex-commands/</link>
					<comments>https://blog.henrypoon.com/blog/2011/08/21/really-handy-latex-commands/#respond</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Sun, 21 Aug 2011 22:39:08 +0000</pubDate>
				<category><![CDATA[computer stuff]]></category>
		<category><![CDATA[agra]]></category>
		<category><![CDATA[Assimilation]]></category>
		<category><![CDATA[Bullet]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[Comment]]></category>
		<category><![CDATA[Contents]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Diaeresis]]></category>
		<category><![CDATA[EAR]]></category>
		<category><![CDATA[Find]]></category>
		<category><![CDATA[Go]]></category>
		<category><![CDATA[HTML element]]></category>
		<category><![CDATA[Introduction]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Link]]></category>
		<category><![CDATA[Literature]]></category>
		<category><![CDATA[Page]]></category>
		<category><![CDATA[Table of contents]]></category>
		<category><![CDATA[Thou]]></category>
		<category><![CDATA[Umlaut]]></category>
		<category><![CDATA[URL]]></category>
		<category><![CDATA[Writing]]></category>
		<category><![CDATA[Z]]></category>
		<guid isPermaLink="false">http://henrypoon.mooo.com/blog/really-handy-latex-commands</guid>

					<description><![CDATA[I just started writing in LaTeX and all too often I find myself forgetting commands that I had looked up a few minutes ago.  Therefore, I thought it’d help if I compiled a list of these. Paragraph Spacing This goes in the preamble of the document (after the document class stuff, but before the begin [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">I just started writing in LaTeX and all too often I find myself forgetting commands that I had looked up a few minutes ago.  Therefore, I thought it’d help if I compiled a list of these.</p>



<h1 class="wp-block-heading">Paragraph Spacing</h1>



<pre class="wp-block-code"><code lang="" class="">setlength{parskip}{7pt}</code></pre>



<p class="wp-block-paragraph">This goes in the preamble of the document (after the document class stuff, but before the begin document line).</p>



<h1 class="wp-block-heading">Removing Page Numbers</h1>



<pre class="wp-block-code"><code class="">thispagestyle{empty}</code></pre>



<p class="wp-block-paragraph">This gets rid of page numbers for that particular page, but the numbering sequence continues on the next page.</p>



<h1 class="wp-block-heading">Adding Unnumbered Sections into the TOC</h1>



<pre class="wp-block-code"><code class="">section*{Introduction}
addcontentsline{toc}{section}{Introduction}</code></pre>



<p class="wp-block-paragraph">By default, unnumbered sections do not appear in the table of contents and therefore they must be added manually.</p>



<h1 class="wp-block-heading">Defining a New Style with fancyhdr</h1>



<pre class="wp-block-code"><code class="">fancypagestyle{plain}{%
fancyhf{}}% clear all header and footer fields</code></pre>



<p class="wp-block-paragraph">New style definitions should go before the very last curly brace.</p>



<h1 class="wp-block-heading">Unnumbered Sections Not Working with leftmark and rightmark</h1>



<pre class="wp-block-code"><code class="">section*{Introductionmarkboth{Introduction}{}}</code></pre>



<p class="wp-block-paragraph">For some reason, unnumbered sections don’t play nice with fancyhdr and don’t get treated as <em>real</em> sections when the leftmark and rightmark commands are used.&nbsp; By using markboth, it fixes the problem.&nbsp; Now my headers show the correct section name.</p>



<h1 class="wp-block-heading">Bulleted List</h1>



<pre class="wp-block-code"><code class="">begin{itemize}
item Here is a bullet.
item Here is another bullet.
end{itemize}</code></pre>



<h1 class="wp-block-heading">Numbered List</h1>



<pre class="wp-block-code"><code class="">begin{enumerate}
item Here is item one.
item Here is item two.
end{enumerate}</code></pre>



<h1 class="wp-block-heading">Referencing Sections by Name</h1>



<pre class="wp-block-code"><code class="">section{MyFirstSection} label{marker}
section{MySecondSection}
In section~nameref{marker} we defined...</code></pre>



<p class="wp-block-paragraph">Requires the <em>hyperref</em> package!  Put the line below in the preamble.</p>



<pre class="wp-block-code"><code class="">usepackage{hyperref}</code></pre>



<h1 class="wp-block-heading">Linking to a Website</h1>



<pre class="wp-block-code"><code class="">href{http://www.example.com}{Link}</code></pre>



<h1 class="wp-block-heading">Umlauts</h1>



<pre class="wp-block-code"><code class="">"{o}</code></pre>



<p class="wp-block-paragraph">That gives an o with an umlaut.&nbsp; Just replace the letter to get an umlaut on a different character.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2011/08/21/really-handy-latex-commands/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1224</post-id>	</item>
	</channel>
</rss>
