<?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>porges &#187; latex</title>
	<atom:link href="http://porg.es/blog/tag/latex/feed" rel="self" type="application/rss+xml" />
	<link>http://porg.es/blog</link>
	<description></description>
	<lastBuildDate>Thu, 12 Jan 2012 23:45:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Witold Pilecki</title>
		<link>http://porg.es/blog/witold-pilecki</link>
		<comments>http://porg.es/blog/witold-pilecki#comments</comments>
		<pubDate>Wed, 15 Oct 2008 01:49:19 +0000</pubDate>
		<dc:creator>Porges</dc:creator>
				<category><![CDATA[self]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[created]]></category>
		<category><![CDATA[latex]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[wwii]]></category>

		<guid isPermaLink="false">http://porg.es/blog/?p=210</guid>
		<description><![CDATA[The story of Witold Pilecki should be more widely known. Since this is the only version seemingly available in English on the internet, I decided to clean it up a bit so it is easier to read. You can download the PDF I have created here. It needs a bit more cleaning up but I [...]]]></description>
			<content:encoded><![CDATA[<p>The story of <a href="http://en.wikipedia.org/wiki/Witold_Pilecki">Witold Pilecki</a> should be more widely known.</p>
<p>Since <a href="http://witoldsreport.blogspot.com/">this</a> is the only version seemingly available in English on the internet, I decided to clean it up a bit so it is easier to read.</p>
<p>You can download the PDF I have created <a href="http://porg.es/CaptainPilecki.pdf">here</a>. It needs a bit more cleaning up but I haven&#8217;t gotten around to it yet&#8230; if you find any errors, feel free to tell me about them! The thing that needs the most work is the English translation, but I&#8217;m wary about changing that lest I lose some of the original meaning.</p>
<p>Credit to Michał Tyrpa for putting this on the internet, and André Miede for the LaTeX style. Of course, most credit should go to Witold Pilecki for his bravery.</p>
]]></content:encoded>
			<wfw:commentRss>http://porg.es/blog/witold-pilecki/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A useful gedit macro for LaTeX</title>
		<link>http://porg.es/blog/a-useful-gedit-macro-for-latex</link>
		<comments>http://porg.es/blog/a-useful-gedit-macro-for-latex#comments</comments>
		<pubDate>Wed, 30 Apr 2008 06:28:41 +0000</pubDate>
		<dc:creator>Porges</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[gedit]]></category>
		<category><![CDATA[latex]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[useful]]></category>

		<guid isPermaLink="false">http://porg.es/blog/?p=127</guid>
		<description><![CDATA[Builds and displays your current LaTeX document, and removes all the temporary file spam. #!/bin/bash TMPDIR=$&#40;mktemp -td&#41; &#160; rubber -d --into &#34;$TMPDIR&#34; &#34;$GEDIT_CURRENT_DOCUMENT_NAME&#34; &#38;&#38; mv &#34;$TMPDIR/${GEDIT_CURRENT_DOCUMENT_NAME%tex}pdf&#34; &#34;$GEDIT_CURRENT_DOCUMENT_DIR&#34; &#160; if &#91; $? -eq 0 &#93; then evince &#34;${GEDIT_CURRENT_DOCUMENT_NAME%tex}pdf&#34; &#38; fi &#160; rm -rf &#34;$TMPDIR&#34;]]></description>
			<content:encoded><![CDATA[<p>Builds and displays your current LaTeX document, and removes all the temporary file spam.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #007800;">TMPDIR</span>=$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">mktemp</span> -td<span style="color: #7a0874; font-weight: bold;">&#41;</span>
&nbsp;
rubber <span style="color: #660033;">-d</span> <span style="color: #660033;">--into</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$TMPDIR</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$GEDIT_CURRENT_DOCUMENT_NAME</span>&quot;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span>
<span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$TMPDIR</span>/<span style="color: #007800;">${GEDIT_CURRENT_DOCUMENT_NAME%tex}</span>pdf&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$GEDIT_CURRENT_DOCUMENT_DIR</span>&quot;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #007800;">$?</span> <span style="color: #660033;">-eq</span> <span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>
	<span style="color: #000000; font-weight: bold;">then</span> evince <span style="color: #ff0000;">&quot;<span style="color: #007800;">${GEDIT_CURRENT_DOCUMENT_NAME%tex}</span>pdf&quot;</span> <span style="color: #000000; font-weight: bold;">&amp;</span>
<span style="color: #000000; font-weight: bold;">fi</span>
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$TMPDIR</span>&quot;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://porg.es/blog/a-useful-gedit-macro-for-latex/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

