<?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>Tech &#38; everything</title>
	<atom:link href="http://sebastian-doerner.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://sebastian-doerner.de</link>
	<description>About technology, among other things</description>
	<lastBuildDate>Tue, 26 Jun 2012 12:45:09 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Last LaTeX Tips for Your Thesis &#8211; The TikZ Package and Editing with Vim-LaTeX</title>
		<link>http://sebastian-doerner.de/2012/06/last-latex-tips-for-your-thesis-the-tikz-package-and-editing-with-vim-latex/</link>
		<comments>http://sebastian-doerner.de/2012/06/last-latex-tips-for-your-thesis-the-tikz-package-and-editing-with-vim-latex/#comments</comments>
		<pubDate>Tue, 26 Jun 2012 12:45:09 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[LaTeX for Your Thesis]]></category>
		<category><![CDATA[drawing]]></category>
		<category><![CDATA[editing]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[graphs]]></category>
		<category><![CDATA[Latex]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[TikZ]]></category>
		<category><![CDATA[vim]]></category>
		<category><![CDATA[vim-latex]]></category>

		<guid isPermaLink="false">http://sebastian-doerner.de/?p=249</guid>
		<description><![CDATA[This post finishes the series of blog posts on LaTeX for your thesis. I will quickly introduce: the best LaTeX graphics package I know my LaTeX typing environment using vim TikZ ist kein Zeichenprogramm (TikZ is not a drawing programme) This is probably the best graphics package available, it feels like you can do anything &#8230; </p><p><a class="more-link block-button" href="http://sebastian-doerner.de/2012/06/last-latex-tips-for-your-thesis-the-tikz-package-and-editing-with-vim-latex/">Continue reading &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>This post finishes the series of blog posts on LaTeX for your thesis. I will quickly introduce:</p>
<ul>
<li>the best LaTeX graphics package I know</li>
<li>my LaTeX typing environment using <a href="http://www.vim.org/">vim</a></li>
</ul>
<p><strong>TikZ ist kein Zeichenprogramm (TikZ is not a drawing programme)</strong></p>
<p>This is probably the best graphics package available, it feels like you can do anything you like with it and the output looks highly professional. However, it takes a bit time to get used to. The start is very easy, these two lines enable the library and some components which I found useful (you might want to enable those only when you actually need them).</p>
<div class="codecolorer-container latex geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="latex codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #2C922C; font-style: italic;">%preamble</span><br />
<span style="color: #E02020; ">\</span><span style="color: #800000;">usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">tikz<span style="color: #E02020; ">}</span><br />
<span style="color: #800000; font-weight: normal;">\usetikzlibrary</span>{calc,positioning,shapes,shadows,arrows,fit</span><span style="color: #E02020; ">}</span></div></div>
<p>There are multiple layers of its use, you can start drawing simple lines, but higher-level parts provide support for graphs, mind maps, bezier curves etc. Here is a simple example for an illustrated finite-state machine:</p>
<div class="codecolorer-container latex geshi" style="border:1px solid #9F9F9F;width:435px;"><div class="latex codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #2C922C; font-style: italic;">%in the document</span><br />
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">tikzpicture</span><span style="color: #E02020; ">}</span><br />
<span style="color: #800000; font-weight: normal;">\node</span>(pseudo) at (-1,0)<span style="color: #E02020; ">{}</span>;<br />
<span style="color: #800000; font-weight: normal;">\node</span>(0) at (0,0)<span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">shape=circle,draw</span><span style="color: #E02020; ">]</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #E02020; ">{</span><span style="color: #8020E0; font-weight: normal;">$q_0$</span><span style="color: #E02020; ">}</span>;<br />
<span style="color: #800000; font-weight: normal;">\node</span>(1) at (2,0)<span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">shape=circle,draw</span><span style="color: #E02020; ">]</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #E02020; ">{</span><span style="color: #8020E0; font-weight: normal;">$q_1$</span><span style="color: #E02020; ">}</span>;<br />
<span style="color: #800000; font-weight: normal;">\node</span>(2) at (4,0)<span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">shape=circle,draw</span><span style="color: #E02020; ">]</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #E02020; ">{</span><span style="color: #8020E0; font-weight: normal;">$q_2$</span><span style="color: #E02020; ">}</span>;<br />
<span style="color: #800000; font-weight: normal;">\node</span>(3) at (6,0)<span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">shape=circle,draw,double</span><span style="color: #E02020; ">]</span> <span style="color: #E02020; ">{</span><span style="color: #8020E0; font-weight: normal;">$q_f$</span><span style="color: #E02020; ">}</span>;<br />
<span style="color: #800000; font-weight: normal;">\path</span> <span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">-&gt;</span><span style="color: #E02020; ">]</span><br />
&nbsp; (0) &nbsp; &nbsp; &nbsp;edge &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; node <span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">above</span><span style="color: #E02020; ">]</span> &nbsp;<span style="color: #E02020; ">{</span>b<span style="color: #E02020; ">}</span> &nbsp; &nbsp; (1)<br />
&nbsp; (1) &nbsp; &nbsp; &nbsp;edge &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; node <span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">above</span><span style="color: #E02020; ">]</span> &nbsp;<span style="color: #E02020; ">{</span>a<span style="color: #E02020; ">}</span> &nbsp; &nbsp; (2)<br />
&nbsp; (2) &nbsp; &nbsp; &nbsp;edge &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; node <span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">above</span><span style="color: #E02020; ">]</span> &nbsp;<span style="color: #E02020; ">{</span>b<span style="color: #E02020; ">}</span> &nbsp; &nbsp; (3)<br />
&nbsp; (2) &nbsp; &nbsp; &nbsp;edge <span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">bend left=30</span><span style="color: #E02020; ">]</span> &nbsp;node <span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">below</span><span style="color: #E02020; ">]</span> &nbsp;<span style="color: #E02020; ">{</span>a<span style="color: #E02020; ">}</span> &nbsp; &nbsp; (0)<br />
&nbsp; (0) &nbsp; &nbsp; &nbsp;edge <span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">loop above</span><span style="color: #E02020; ">]</span> &nbsp; &nbsp;node <span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">above</span><span style="color: #E02020; ">]</span> &nbsp;<span style="color: #E02020; ">{</span>a<span style="color: #E02020; ">}</span> &nbsp; &nbsp; ()<br />
&nbsp; (1) &nbsp; &nbsp; &nbsp;edge <span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">loop above</span><span style="color: #E02020; ">]</span> &nbsp; &nbsp;node <span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">above</span><span style="color: #E02020; ">]</span> &nbsp;<span style="color: #E02020; ">{</span>b<span style="color: #E02020; ">}</span> &nbsp; &nbsp; ()<br />
&nbsp; (3) &nbsp; &nbsp; &nbsp;edge <span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">loop above</span><span style="color: #E02020; ">]</span> &nbsp; &nbsp;node <span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">above</span><span style="color: #E02020; ">]</span> &nbsp;<span style="color: #E02020; ">{</span>a,b<span style="color: #E02020; ">}</span> &nbsp; ()<br />
&nbsp; (pseudo) edge &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (0);<br />
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #0000D0; font-weight: normal;">tikzpicture</span></span><span style="color: #E02020; ">}</span></div></div>
<p>As you can see, lines are terminated by a semicolon, so you can whitespace-format your code to make it well-readable. The resulting image is a vector graphic (whereas my screenshot of it isn&#8217;t&#8230;):<br />
<a href="http://sebastian-doerner.de/wp-content/uploads/automaton.png"><img src="http://sebastian-doerner.de/wp-content/uploads/automaton.png" alt="" title="automaton" width="547" height="169" class="alignnone size-full wp-image-254" /></a></p>
<p>Of course this is only a small fraction of what you can do. In fact the package is so versatile that people actually made a website full of <a href="http://www.texample.net/tikz/examples/all/">TikZ-Examples</a> (including pictures of the results). The complete guide can be found in the <a href="http://mirror.ctan.org/graphics/pgf/base/doc/generic/pgf/pgfmanual.pdf">official manual</a>, which is well-illustrated using TikZ itself. The name PGF relates to the lower layer of the package.</p>
<p><strong>Editing with vim-latex</strong></p>
<p>If &#8211; and only if &#8211; you are a fan of and proficient in vim anyway, I recommend the <a href="http://www.vim.org/scripts/script.php?script_id=475">LaTeX-Suite for vim (a.k.a. Vim-LaTeX)</a>. One of the biggest benefits is obviously that you can still do things like <code class="codecolorer text default"><span class="text">ct,</span></code> (replace the text until the next comma) while editing LaTeX. However there are many more things added specifically for LaTeX editing.</p>
<p>A very useful combination is autocompletion together with jump markers. E.g. if you type <code class="codecolorer text default"><span class="text">matrix</span></code> and then press <code class="codecolorer text default"><span class="text">&lt;F5&gt;</span></code>, vim-latex replaces that with</p>
<div class="codecolorer-container latex geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="latex codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">matrix</span><span style="color: #E02020; ">}</span><br />
<br />
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #0000D0; font-weight: normal;">matrix</span></span><span style="color: #E02020; ">}</span>&lt;++&gt;</div></div>
<p>where your cursor is placed in the middle of the matrix environment. Now you can put in the desired content and then press <code class="codecolorer text default"><span class="text">Ctrl+j</span></code> to move the cursor directly to the marker <code class="codecolorer text default"><span class="text">&lt;++&gt;</span></code> (which is then removed). This works also for eqnarray, tabular etc. Not needing to type all those curly braces is very relieving. This also works for smaller commands, e.g. <code class="codecolorer text default"><span class="text">`2</span></code> is replaced by <code class="codecolorer latex default"><span class="latex"><span style="color: #800000; font-weight: normal;">\sqrt</span><span style="color: #E02020; ">{</span><span style="color: #E02020; ">}</span>&lt;++&gt;</span></code> and <code class="codecolorer text default"><span class="text">`/</span></code> is replaced by <code class="codecolorer latex default"><span class="latex"><span style="color: #E02020; ">\</span><span style="color: #800000;">frac</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">}{&lt;++&gt;</span><span style="color: #E02020; ">}</span>&lt;++&gt;</span></code> (cursor between the first pair of braces in each case). Needless to say that you can also add your own templates.</p>
<p>Furthermore you can compile and show the pdf file directly from vim using (in command mode) <code class="codecolorer text default"><span class="text">\ll</span></code> and <code class="codecolorer text default"><span class="text">\lv</span></code> respectively. Folding and syntax highlighting go without saying. Here are some of the definitions I use in my <code class="codecolorer text default"><span class="text">~/vim/ftplugin/tex/texrc</span></code> to further speed up typing:</p>
<div class="codecolorer-container vim mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="vim codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #adadad; font-style: italic;">&quot; start compilation and show pdf even faster</span><br />
nmap \\ <span style="color: #000000;">:</span>w<span style="color: #000000;">&lt;</span>CR<span style="color: #000000;">&gt;</span>\ll<br />
nmap \v \lv<br />
nmap \a \\ \v<span style="color: #adadad; font-style: italic;"><br />
<br />
&quot;start environments for italic, bold, typewriter, mathbb or mathmode</span><br />
imap <span style="color: #000000;">&lt;</span>C<span style="color: #000000;">-</span>i<span style="color: #000000;">&gt;</span> \textit<span style="color: #000000;">&#123;</span>XXX<span style="color: #000000;">&#125;</span><span style="color: #000000;">&lt;++&gt;</span><span style="color: #668080;">&lt;Esc&gt;</span><span style="color: #000000;">?</span>XXX<span style="color: #000000;">&lt;</span>CR<span style="color: #000000;">&gt;</span>cw<br />
imap <span style="color: #000000;">&lt;</span>C<span style="color: #000000;">-</span>b<span style="color: #000000;">&gt;</span> \textbf<span style="color: #000000;">&#123;</span>XXX<span style="color: #000000;">&#125;</span><span style="color: #000000;">&lt;++&gt;</span><span style="color: #668080;">&lt;Esc&gt;</span><span style="color: #000000;">?</span>XXX<span style="color: #000000;">&lt;</span>CR<span style="color: #000000;">&gt;</span>cw<br />
imap <span style="color: #000000;">&lt;</span>C<span style="color: #000000;">-</span>t<span style="color: #000000;">&gt;</span> \texttt<span style="color: #000000;">&#123;</span>XXX<span style="color: #000000;">&#125;</span><span style="color: #000000;">&lt;++&gt;</span><span style="color: #668080;">&lt;Esc&gt;</span><span style="color: #000000;">?</span>XXX<span style="color: #000000;">&lt;</span>CR<span style="color: #000000;">&gt;</span>cw<br />
inoremap <span style="color: #000000;">&lt;</span>C<span style="color: #000000;">-</span>n<span style="color: #000000;">&gt;</span> \mathbb<span style="color: #000000;">&#123;</span>XXX<span style="color: #000000;">&#125;</span><span style="color: #000000;">&lt;++&gt;</span><span style="color: #668080;">&lt;Esc&gt;</span><span style="color: #000000;">?</span>XXX<span style="color: #000000;">&lt;</span>CR<span style="color: #000000;">&gt;</span>cw<span style="color: #adadad; font-style: italic;"><br />
&quot;same in visual mode</span><br />
imap <span style="color: #000000;">&lt;</span>C<span style="color: #000000;">-</span>k<span style="color: #000000;">&gt;</span> <span style="color: #000000;">$$</span><br />
vmap <span style="color: #000000;">&lt;</span>C<span style="color: #000000;">-</span>i<span style="color: #000000;">&gt;</span><span style="color: #adadad; font-style: italic;"> &quot;zdi\textit{&lt;C-R&gt;z}&lt;ESC&gt;</span><br />
vmap <span style="color: #000000;">&lt;</span>C<span style="color: #000000;">-</span>b<span style="color: #000000;">&gt;</span><span style="color: #adadad; font-style: italic;"> &quot;zdi\textbf{&lt;C-R&gt;z}&lt;ESC&gt;</span><br />
vmap <span style="color: #000000;">&lt;</span>C<span style="color: #000000;">-</span>t<span style="color: #000000;">&gt;</span><span style="color: #adadad; font-style: italic;"> &quot;zdi\texttt{&lt;C-R&gt;z}&lt;ESC&gt;</span><br />
vnoremap <span style="color: #000000;">&lt;</span>C<span style="color: #000000;">-</span>n<span style="color: #000000;">&gt;</span><span style="color: #adadad; font-style: italic;"> &quot;zdi\mathbb{&lt;C-R&gt;z}&lt;ESC&gt;</span><br />
vmap <span style="color: #000000;">&lt;</span>C<span style="color: #000000;">-</span>k<span style="color: #000000;">&gt;</span><span style="color: #adadad; font-style: italic;"> &quot;zdi$&lt;C-R&gt;z$&lt;ESC&gt;</span></div></div>
<p>It is also a good idea to use vim&#8217;s spelling support (independent of vim-latex) for your thesis. Just put</p>
<div class="codecolorer-container vim mac-light" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="vim codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #804040;">set</span> <span style="color: #668080;">spellfile</span>=<span style="color: #000000;">~/.</span>vim<span style="color: #000000;">/</span><span style="color: #668080;">spellfile</span><span style="color: #000000;">.</span><span style="color: #25BB4D;">add</span><br />
<span style="color: #804040;">set</span> <span style="color: #668080;">spelllang</span>=en_gb</div></div>
<p>into your <code class="codecolorer text default"><span class="text">~/.vimrc</span></code> and enable it only for your thesis using a so-called <em>mode line</em>. This is done by making the following line the last in your .tex file:</p>
<div class="codecolorer-container latex geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="latex codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #2C922C; font-style: italic;">% vim: set spell:</span></div></div>
<p>You can then add good and bad spellings into the spellfile using the <code class="codecolorer vim mac-light"><span class="vim"><span style="color: #000000;">:</span>spellgood</span></code> and <code class="codecolorer vim mac-light"><span class="vim"><span style="color: #000000;">:</span>spellwrong</span></code> commands.</p>
<p>For now this concludes my blog series about LaTeX for your thesis. Please tell me if I have missed important tips or packages or you would like to contribute a guest article.</p>
]]></content:encoded>
			<wfw:commentRss>http://sebastian-doerner.de/2012/06/last-latex-tips-for-your-thesis-the-tikz-package-and-editing-with-vim-latex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More LaTeX Tips for Your Thesis &#8211; Quoting</title>
		<link>http://sebastian-doerner.de/2012/06/more-latex-tips-for-your-thesis-quoting/</link>
		<comments>http://sebastian-doerner.de/2012/06/more-latex-tips-for-your-thesis-quoting/#comments</comments>
		<pubDate>Sun, 17 Jun 2012 14:04:04 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[LaTeX for Your Thesis]]></category>
		<category><![CDATA[csquotes]]></category>
		<category><![CDATA[Latex]]></category>
		<category><![CDATA[quoting]]></category>
		<category><![CDATA[Thesis]]></category>

		<guid isPermaLink="false">http://sebastian-doerner.de/?p=216</guid>
		<description><![CDATA[Quoting in standard LaTeX has got a few drawbacks: Depending on which language-packages you use, you sometimes need &#34;', sometimes just &#34; for quotes (otherwise it might print umlauts). Switching between the type of quotation marks late means you have to replace them throughout your document. You have to pay attention to using different quotation &#8230; </p><p><a class="more-link block-button" href="http://sebastian-doerner.de/2012/06/more-latex-tips-for-your-thesis-quoting/">Continue reading &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>Quoting in standard LaTeX has got a few drawbacks:</p>
<ul>
<li>Depending on which language-packages you use, you sometimes need <code class="codecolorer text default"><span class="text">&quot;'</span></code>, sometimes just <code class="codecolorer text default"><span class="text">&quot;</span></code> for quotes (otherwise it might print umlauts).</li>
<li>Switching between the type of quotation marks late means you have to replace them throughout your document.</li>
<li>You have to pay attention to using different quotation marks when nesting them.</li>
<li>Literal quotes are not directly associated to the reference you give. And you cannot easily search for them in your document (<code class="codecolorer text default"><span class="text">\cite</span></code> also appears independently of quotes, quotation marks also appear for other reasons):
<div class="codecolorer-container text geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&quot;'To be or not to be&quot;'\cite{hamlet}</div></div>
</li>
</ul>
<p>The package to solve all of your quotation problems is called <strong>csquotes</strong>.</p>
<div class="codecolorer-container latex geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="latex codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #E02020; ">\</span><span style="color: #800000;">usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">ngerman, english</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">babel<span style="color: #E02020; ">}</span><br />
<span style="color: #E02020; ">\</span><span style="color: #800000;">usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;"><br />
&nbsp; autostyle=true,<br />
&nbsp; german=quotes,<br />
&nbsp; english=british,<br />
&nbsp; french=guillemets</span>]{csquotes</span><span style="color: #E02020; ">}</span></div></div>
<p>In case you don&#8217;t know, the babel package provides basic internationalisation support, e.g. for splitting words at the correct positions.The csquotes package&#8217;s <code class="codecolorer text default"><span class="text">autostyle</span></code> option depends on the babel package for recognising your document language. It then sets the type of quotation marks according to the mapping given in the options.</p>
<p>Here is a small usage example:</p>
<div class="codecolorer-container latex geshi" style="border:1px solid #9F9F9F;width:435px;"><div class="latex codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">And he was like: <span style="color: #800000; font-weight: normal;">\enquote</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">We were in a drinking establishment called <span style="color: #800000; font-weight: normal;">\enquote</span><span style="color: #E02020; ">{</span>The Foo Bar<span style="color: #E02020; ">}</span>.<span style="color: #E02020; ">}\\</span><br />
<br />
<span style="color: #800000; font-weight: normal;">\textcquote</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">p. 44</span>]{hamlet}{To be, or not to be: that is the question</span><span style="color: #E02020; ">}</span></div></div>
<p>The first line introduces the <code class="codecolorer text default"><span class="text">\enquote</span></code> command, which basically just places the text in the appropriate quotation marks. However, for the nested quote, the marks are automatically switched to double quotes. The <code class="codecolorer text default"><span class="text">\textcquote</span></code> command associates a quote with a citation and behaves mostly like manual quoting with an added <code class="codecolorer text default"><span class="text">\cite</span></code>. The output looks like this:<br />
<a href="http://sebastian-doerner.de/wp-content/uploads/csquotes.png"><img src="http://sebastian-doerner.de/wp-content/uploads/csquotes.png" alt="" title="csquotes" width="506" height="74" class="alignnone size-full wp-image-237" /></a></p>
<p>Since csquotes has got many more options than these, you might want to refer to the <a href="http://www.tug.org/texlive/Contents/live/texmf-dist/doc/latex/csquotes/csquotes.pdf" title="csquotes manual">manual</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sebastian-doerner.de/2012/06/more-latex-tips-for-your-thesis-quoting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More LaTeX Tips for Your Thesis &#8211; Aliases and the xspace Package</title>
		<link>http://sebastian-doerner.de/2012/06/more-latex-tips-for-your-thesis-aliases-and-the-xspace-package/</link>
		<comments>http://sebastian-doerner.de/2012/06/more-latex-tips-for-your-thesis-aliases-and-the-xspace-package/#comments</comments>
		<pubDate>Mon, 11 Jun 2012 11:00:42 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[LaTeX for Your Thesis]]></category>
		<category><![CDATA[Aliases]]></category>
		<category><![CDATA[Latex]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[xspace]]></category>

		<guid isPermaLink="false">http://sebastian-doerner.de/?p=167</guid>
		<description><![CDATA[This is a follow-up post of this one Consistency and speed are two major issues in writing your thesis. First, you want important and particularly technical terms to appear typeset in a consistent manner throughout the whole thesis. Everything else would just look unprofessional, and given that you chose LaTeX you seem to be serious &#8230; </p><p><a class="more-link block-button" href="http://sebastian-doerner.de/2012/06/more-latex-tips-for-your-thesis-aliases-and-the-xspace-package/">Continue reading &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>This is a follow-up post of <a href="http://sebastian-doerner.de/2012/06/useful-latex-packages-for-your-thesis/" title="Useful LaTeX Packages for Your Thesis">this one</a></p>
<p>Consistency and speed are two major issues in writing your thesis. First, you want important and particularly technical terms to appear typeset in a consistent manner throughout the whole thesis. Everything else would just look unprofessional, and given that you chose LaTeX you seem to be serious about that point. Secondly, these kinds of names tend to be quite long and also appear frequently. So instead of typing your fingers bloody, you should make use of Latex being essentially a programming language and define variables, a.k.a. aliases or new commands. This is usually done using <code class="codecolorer latex default"><span class="latex"><span style="color: #E02020; ">\</span><span style="color: #800000;">newcommand</span></span></code>. You can do that anywhere in the document, but I would recommend grouping all aliases together in the preamble. Let&#8217;s look at an example (sorry for the logic domain, but this is where all my current LaTeX texts are set in &#8230;):</p>
<div class="codecolorer-container latex geshi" style="border:1px solid #9F9F9F;width:435px;"><div class="latex codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #2C922C; font-style: italic;">%preamble</span><br />
<span style="color: #E02020; ">\</span><span style="color: #800000;">usepackage</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">xspace<span style="color: #E02020; ">}</span><br />
<span style="color: #E02020; ">\</span><span style="color: #800000;">newcommand</span><span style="color: #E02020; ">{</span><span style="color: #800000; font-weight: normal;">\fol</span><span style="color: #E02020; ">}{</span>First-Order Logic<span style="color: #800000; font-weight: normal;">\xspace</span><span style="color: #E02020; ">}</span><br />
<span style="color: #E02020; ">\</span><span style="color: #800000;">newcommand</span><span style="color: #E02020; ">{</span><span style="color: #800000; font-weight: normal;">\sig</span><span style="color: #E02020; ">}{</span><span style="color: #800000; font-weight: normal;">\Sigma</span><span style="color: #E02020; ">}</span><br />
<span style="color: #E02020; ">\</span><span style="color: #800000;">newcommand</span><span style="color: #E02020; ">{</span><span style="color: #800000; font-weight: normal;">\powerset</span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">1</span><span style="color: #E02020; ">]{</span><span style="color: #800000; font-weight: normal;">\mathcal</span>{P}(#1)</span><span style="color: #E02020; ">}</span><br />
<span style="color: #2C922C; font-style: italic;">%\newcommand{\powerset}[1]{2^{#1}}</span><br />
<span style="color: #E02020; ">\</span><span style="color: #800000;">newcommand</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #800000; font-weight: normal;">\oversim</span><span style="color: #E02020; ">}[</span><span style="color: #C08020; font-weight: normal;">1</span><span style="color: #E02020; ">]{\</span>,<span style="color: #E02020; ">{</span><span style="color: #800000; font-weight: normal;">\buildrel</span> #1 <span style="color: #800000; font-weight: normal;">\over</span> <span style="color: #800000; font-weight: normal;">\sim</span> <span style="color: #E02020; ">}\</span>,<span style="color: #E02020; ">}</span><br />
<span style="color: #E02020; ">\</span><span style="color: #800000;">newcommand</span><span style="color: #E02020; ">{</span><span style="color: #800000; font-weight: normal;">\lEdownarrow</span><span style="color: #E02020; ">}{</span>ML<span style="color: #8020E0; font-weight: normal;">$\,+\,E\,+<span style="color: #800000; font-weight: normal;">\downarrow</span>$</span><span style="color: #800000; font-weight: normal;">\xspace</span></span><span style="color: #E02020; ">}</span><br />
<br />
<span style="color: #2C922C; font-style: italic;">%document</span><br />
<span style="color: #C00000; font-weight: normal;">\begin</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">itemize</span></span><span style="color: #E02020; ">}</span><br />
<span style="color: #2C922C; font-style: italic;">% usage in normal text mode</span><br />
<span style="color: #E02020; ">\</span><span style="color: #800000;">item</span> It is good that when writing about <span style="color: #800000; font-weight: normal;">\fol</span>, I don't have to write <span style="color: #800000; font-weight: normal;">\fol</span> twice!<br />
<span style="color: #2C922C; font-style: italic;">% works in math mode as well</span><br />
<span style="color: #E02020; ">\</span><span style="color: #800000;">item</span> Greek letter: <span style="color: #8020E0; font-weight: normal;">$<span style="color: #800000; font-weight: normal;">\sig</span>$</span><br />
<span style="color: #2C922C; font-style: italic;">% useful for consistency, if you want to change the notation later (see above)</span><br />
<span style="color: #E02020; ">\</span><span style="color: #800000;">item</span> Let <span style="color: #8020E0; font-weight: normal;">$N=\{<span style="color: #2020C0; font-weight: normal;">1,2,3\}$</span> and regard the elements of <span style="color: #8020E0; font-weight: normal;">$<span style="color: #800000; font-weight: normal;">\powerset</span>{N</span>}$</span> <span style="color: #800000; font-weight: normal;">\dots</span><br />
<span style="color: #2C922C; font-style: italic;">% hides complicated TeX stuff behind a simple command</span><br />
<span style="color: #E02020; ">\</span><span style="color: #800000;">item</span> They agree on everything but <span style="color: #8020E0; font-weight: normal;">$x$</span>: <span style="color: #8020E0; font-weight: normal;">$g <span style="color: #800000; font-weight: normal;">\oversim</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">x</span>} g'$</span><br />
<span style="color: #2C922C; font-style: italic;">% custom fine-grained spacing, consistent across your whole thesis</span><br />
<span style="color: #E02020; ">\</span><span style="color: #800000;">item</span> That's a hybrid language: <span style="color: #800000; font-weight: normal;">\lEdownarrow</span><br />
<span style="color: #C00000; font-weight: normal;">\end</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;"><span style="color: #0000D0; font-weight: normal;">itemize</span></span><span style="color: #E02020; ">}</span></div></div>
<p>The output looks like this:<br />
<a href="http://sebastian-doerner.de/wp-content/uploads/aliases-output.png"><img src="http://sebastian-doerner.de/wp-content/uploads/aliases-output.png" alt="" title="aliases-output" width="514" height="217" class="size-full wp-image-182" /></a></p>
<p>So what is going on? The first two examples do not have any parameters, but show that aliasing works both in text and math mode. Normally, these aliases bring up problems with spaces directly after them. You always need to have a space to delimit the command use from the normal text following it, so usually Latex does not print this space. This would lead to the first example ending like this:<a href="http://sebastian-doerner.de/wp-content/uploads/aliases-output2.png"><img src="http://sebastian-doerner.de/wp-content/uploads/aliases-output2.png" alt="" title="aliases-output2" width="105" height="24" class="aligncenter size-full wp-image-186" /></a><br />
The <code class="codecolorer text default"><span class="text">\xspace</span></code> command provided by equally named package &#8220;just does the right thing&#8221;, so no trailing space in the first case, but in the second one. The next two examples show how to use parameters. The number in brackets gives the number of parameters, and you can subsequently access them with #index. This is useful e.g. when you don&#8217;t want to fix the notation yet (as in the power set example), or when building shortcuts for complex operators.</p>
<p>This is pretty much all that is important about aliases in LaTeX, xspace mostly works out of the box, so for once no need to RTFM.</p>
<p>More LaTeX tips for your thesis are coming up soon. If you have any wishes of packages I should write about (or even a guest article), please tell me about it. So long, happy writing&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://sebastian-doerner.de/2012/06/more-latex-tips-for-your-thesis-aliases-and-the-xspace-package/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful LaTeX Packages for Your Thesis</title>
		<link>http://sebastian-doerner.de/2012/06/useful-latex-packages-for-your-thesis/</link>
		<comments>http://sebastian-doerner.de/2012/06/useful-latex-packages-for-your-thesis/#comments</comments>
		<pubDate>Tue, 05 Jun 2012 23:42:57 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[LaTeX for Your Thesis]]></category>
		<category><![CDATA[FiXme]]></category>
		<category><![CDATA[Latex]]></category>
		<category><![CDATA[Thesis]]></category>

		<guid isPermaLink="false">http://sebastian-doerner.de/?p=129</guid>
		<description><![CDATA[As many of my fellow students, I recently entered my last term at Imperial College. In contrast to the previous terms, there will not be any lectures, instead everyone will focus on some development or research, and on writing a report / Master&#8217;s thesis about it. Since this is my second thesis already, I got &#8230; </p><p><a class="more-link block-button" href="http://sebastian-doerner.de/2012/06/useful-latex-packages-for-your-thesis/">Continue reading &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>As many of my fellow students, I recently entered my last term at Imperial College. In contrast to the previous terms, there will not be any lectures, instead everyone will focus on some development or research, and on writing a report / Master&#8217;s thesis about it. Since this is my second thesis already, I got to know quite a lot of useful Latex packages and will share some tips in this the follow-up posts.</p>
<p><strong>FiXme &#8211; Annotate your PDF with ToDos</strong><br />
When you are in writing mode, you usually just want to do that &#8211; write. Especially as opposed to working on administrative stuff like fetching and including the right BibTex data or looking for a specific quote, or reading into how to format that image. Still, you need to do those things later and don&#8217;t want to forget coming back to them. Instead of having a separate list of such ToDos, you can insert them directly into your LaTeX code at the right position and render it in the margin of the pdf, using the FiXme package:</p>
<div class="codecolorer-container latex geshi" style="border:1px solid #9F9F9F;width:435px;"><div class="latex codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #2C922C; font-style: italic;">%preamble</span><br />
<span style="color: #E02020; ">\</span><span style="color: #800000;">usepackage</span><span style="color: #E02020; ">[</span><span style="color: #C08020; font-weight: normal;">english, status=draft</span><span style="color: #E02020; ">]{</span><span style="color: #2020C0; font-weight: normal;">fixme<span style="color: #E02020; ">}</span><br />
<span style="color: #800000; font-weight: normal;">\fxusetheme</span>{color</span><span style="color: #E02020; ">}</span><br />
<br />
<span style="color: #2C922C; font-style: italic;">%in the document</span><br />
<span style="color: #800000; font-weight: normal;">\fxwarning</span><span style="color: #E02020; ">{</span><span style="color: #2020C0; font-weight: normal;">Fix this.} Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla nisi erat, ultricies quis faucibus vitae, interdum in urna. Nam id felis augue. Praesent mollis molestie convallis. In ac ante nisl. Nunc velit nisl, mollis nec <span style="color: #800000; font-weight: normal;">\fxwarning*</span>{Spelling?}{feugiat</span><span style="color: #E02020; ">}</span> nec, accumsan suscipit felis.<br />
<br />
<span style="color: #2C922C; font-style: italic;">%List of all FiXme's at the end of the document (or whereever you like)</span><br />
<span style="color: #800000; font-weight: normal;">\listoffixmes</span></div></div>
<p>The margin comment looks like this:<br />
<a href="http://sebastian-doerner.de/wp-content/uploads/fixme-screenshot.png"><img src="http://sebastian-doerner.de/wp-content/uploads/fixme-screenshot.png" alt="Screenshot of the output of FiXme" title="fixme-screenshot" width="631" height="126" class="alignleft size-full wp-image-151" /></a></p>
<p>This might also come in handy to point your reviewers to parts you are especially concerned about. For more information on useful options, e.g. different escalation levels (note, warning, error) or displaying FiXme&#8217;s as footnotes, see the <a href="http://www.ctan.org/tex-archive/macros/latex/contrib/fixme/fixme.pdf" title="FiXme manual" target="_blank">FiXme manual</a></p>
<p>More tips to follow soon&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://sebastian-doerner.de/2012/06/useful-latex-packages-for-your-thesis/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My Bachelor Thesis</title>
		<link>http://sebastian-doerner.de/2012/02/my-bachelor-thesis/</link>
		<comments>http://sebastian-doerner.de/2012/02/my-bachelor-thesis/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 13:37:22 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[CES]]></category>
		<category><![CDATA[Dependency Analysis]]></category>
		<category><![CDATA[Deque]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Parallelization]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[Work-Stealing]]></category>

		<guid isPermaLink="false">http://sebastian-doerner.de/?p=115</guid>
		<description><![CDATA[As nothing on the internet can be found without being linked to, here is a link to my Bachelor Thesis. It is titled An Implementation and Investigation of Depth-First Work-Stealing and was written at IBM Research &#038; Development in Böblingen (March 2011). It concluded my studies at Otto-von-Guericke-Universität Magdeburg.]]></description>
				<content:encoded><![CDATA[<p>As nothing on the internet can be found without being linked to, here is a link to my Bachelor Thesis. It is titled <a href='http://sebastian-doerner.de/wp-content/uploads/Bachelor_Thesis_Sebastian_Doerner.pdf'>An Implementation and Investigation of Depth-First Work-Stealing</a> and was written at IBM Research &#038; Development in Böblingen (March 2011). It concluded my studies at <a href="http://www.ovgu.de/">Otto-von-Guericke-Universität Magdeburg</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sebastian-doerner.de/2012/02/my-bachelor-thesis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A git plugin for Dolphin</title>
		<link>http://sebastian-doerner.de/2011/09/a-git-plugin-for-dolphin/</link>
		<comments>http://sebastian-doerner.de/2011/09/a-git-plugin-for-dolphin/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 23:21:57 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[KDE]]></category>
		<category><![CDATA[Dolphin]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.sebastian-doerner.de/?p=51</guid>
		<description><![CDATA[A while ago, I was contacted by a user who only accidentially found out about the git plugin I wrote for Dolphin almost a year ago. He pointed out that Google, the magic gate to the internet, did not immediately provide a conclusive answer about the existance of this plugin and how to activate it. &#8230; </p><p><a class="more-link block-button" href="http://sebastian-doerner.de/2011/09/a-git-plugin-for-dolphin/">Continue reading &#187;</a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.sebastian-doerner.de/wp-content/uploads/dolphin-plugin-commit.png"><img src="http://www.sebastian-doerner.de/wp-content/uploads/dolphin-plugin-commit-300x178.png" alt="The commit dialog of the git plugin" title="dolphin-plugin-commit" width="300" height="178" class="alignleft size-medium wp-image-77" style="margin-right:5px" /></a>A while ago, I was contacted by a user who only accidentially found out about the git plugin I wrote for Dolphin almost a year ago. He pointed out that Google, the magic gate to the internet, did not immediately provide a conclusive answer about the existance of this plugin and how to activate it. This post is about to fix that problem.</p>
<p>So, what to expect from a git plugin for Dolphin? <a href="http://dolphin.kde.org" title="The Dolphin web site" target="_blank">Dolphin</a> is the well-known file manager for <a href="http://www.kde.org" target="_blank">KDE</a> and can be used to manage all the files and folder on your computer. If you are a programmer, some of these folders will probably be checkouts of a <a href="http://en.wikipedia.org/wiki/Revision_control" target="_blank">version control system</a>, such as <a href="http://git-scm.com" target="_blank">git</a> or <a href="http://subversion.apache.org" target="_blank">Subversion</a>. There are several actions to interact with these systems, such as adding new files to the repository, making commits or checking out specific versions. The usual way to trigger these actions is via the command line. For convenience, Dolphin offers the most frequently used ones in its context menu, so far for SVN and git. Furthermore, the version control states of the files, such as &#8220;added to the repository&#8221; or &#8220;modified since the last commit&#8221;, are indicated for each file with icon overlays.</p>
<p><a href="http://www.sebastian-doerner.de/wp-content/uploads/dolphin-plugin-contextmenu.png"><img src="http://www.sebastian-doerner.de/wp-content/uploads/dolphin-plugin-contextmenu.png" alt="" title="New context menu items" width="284" height="362" class="size-full wp-image-80" /></a> <a href="http://www.sebastian-doerner.de/wp-content/uploads/dolphin-plugin-version-icons.png"><img src="http://www.sebastian-doerner.de/wp-content/uploads/dolphin-plugin-version-icons.png" alt="" title="dolphin-plugin-version-icons" width="300" class=" size-full wp-image-81" /></a></p>
<p><strong>Enabling the git plugin</strong><br />
To enable this functionality, you first need to install the plugins. They are part of KDESDK, here are some package names for common distributions:</p>
<ul>
<li>(K)Ubuntu: kdesdk-dolphin-plugins</li>
<li>openSUSE: dolphin-plugins</li>
<li>Arch Linux: extra/kdesdk-dolphin-plugins</li>
<li>Gentoo: kde-base/dolphin-plugins</li>
</ul>
<p>Now, you can enable the plugins in the dolphin settings:</p>
<p><img src="http://www.sebastian-doerner.de/wp-content/uploads/dolphin-settings-menu.png" alt="Dolphin&#039;s settings menu" title="dolphin-settings-menu" width="271" height="157" class="size-full wp-image-69" /> <a href="http://www.sebastian-doerner.de/wp-content/uploads/dolphin-config-window2.png"><img src="http://www.sebastian-doerner.de/wp-content/uploads/dolphin-config-window2-300x254.png" alt="The dolphin services config window" title="dolphin-config-window2" width="300" height="254" class="size-medium wp-image-71" /></a></p>
<p>After you restart Dolphin, you should see both icon overlays and the new context menu entries whenever you enter a folder that is managed by git.</p>
<p>[Update]Notice that remote access (push / pull) currently only works for authenticated remote repositories and users, i.e. your SSH key must have access to the repository and you should have confirmed the public SSH key of the remote repository on the console before. Password-based login is also not possible at this time.[/Update]</p>
<p>This post is mainly about the git plugin, but there are also other version control systems. The very first plugin to be supported was Subversion (svn), <a href="http://ppenz.blogspot.com/2009/12/version-control-support.html" title="Original blog post introducing the SVN plugin (by Peter Penz)" target="_blank">introduced</a> in KDE 4.4. As part of this year&#8217;s Google Summer of Code, Vishesh Yadav <a href="http://vishesh-yadav.com/blog/tag/kde/" target="_blank">implemented</a> a plugin for <a href="http://mercurial.selenic.com/" target="_blank">Mercurial</a>, which will be part of KDE 4.8. I also spotted a Bazaar plugin in the KDESDK <a href="http://websvn.kde.org/trunk/KDE/kdesdk/dolphin-plugins/bazaar/" target="_blank">trunk</a>. So, if you are into programming, be sure to check out the next version of KDE!</p>
]]></content:encoded>
			<wfw:commentRss>http://sebastian-doerner.de/2011/09/a-git-plugin-for-dolphin/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>
