<?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>wuetender-junger-mann.de &#187; Productivity</title>
	<atom:link href="http://wuetender-junger-mann.de/wordpress/category/productivity/feed/" rel="self" type="application/rss+xml" />
	<link>http://wuetender-junger-mann.de/wordpress</link>
	<description>Der Freiheit eine Gasse</description>
	<lastBuildDate>Tue, 08 May 2012 11:59:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Lessons learnt from using LaTeX</title>
		<link>http://wuetender-junger-mann.de/wordpress/2009/01/lessons-learnt-from-using-latex/</link>
		<comments>http://wuetender-junger-mann.de/wordpress/2009/01/lessons-learnt-from-using-latex/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 12:19:45 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://wuetender-junger-mann.de/wordpress/?p=718</guid>
		<description><![CDATA[It has been a while since I last used LaTeX. And things have moved on. I wanted to write a paper as well as preparing some slides. I also had to include vector graphics and bitmaps as well as source code. So this is what I learnt: Use pdfLaTeX! It produces PDF straight away and [...]]]></description>
			<content:encoded><![CDATA[<p>It has been a while since I last used LaTeX. And things have moved on. I wanted to write a paper as well as preparing some slides. I also had to include vector graphics and bitmaps as well as source code. So this is what I learnt:</p>
<ul>
<li>Use pdfLaTeX! It produces PDF straight away and including images in various formats is painless.</li>
<li>
Including images:</p>
<pre>
% in the preamble
\usepackage{graphicx}

%wherever you need to include
\includegraphics[width=12cm]{image.png}
</pre>
<p>This supports png and jpg as well as pdf for vector graphics. You might want to use <code>epstopdf</code> to produce<br />
pdf form eps.
</li>
<li>
Including source code with <a href="http://www.ctan.org/tex-archive/macros/latex/contrib/listings/">listings</a>:</p>
<pre>
\usepackage{listings}
%Setting defaults for formatting
\lstset{
    language=Java,
    basicstyle=\ttfamily\small,
    keywordstyle=\textbf,
    stringstyle=\ttfamily\textbf,
    showstringspaces=false,
    commentstyle=\textsl,
    captionpos=b
}
% And now including code

\begin{lstlisting}
public interface ListDataListener extends EventListener {
    void intervalAdded(ListDataEvent e);
    void intervalRemoved(ListDataEvent e);
    void contentsChanged(ListDataEvent e);
}
\end{lstlisting}
</pre>
</li>
<li>
Setting urls:</p>
<pre>
\usepackage{url}

\url{http://wuetender-junger-mann.de}
</pre>
</li>
<li>
Creating slides using the <a href="http://latex-beamer.sourceforge.net/">beamer</a> class (beamer being German for projector) to show code<br />
snippets:</p>
<pre>
\documentclass{beamer}
\usepackage{listings}

\title{Weird Presentation}
\author{Felix Leipold}
\date{January 2009}

\begin{document}
   \frame{\titlepage}

      \begin{frame}[containsverbatim]
         \frametitle{Example}
         \begin{lstlisting}
              sourcode.goesHere();
         \end{lstlisting}
      \end{frame}
\end{document}
</pre>
</li>
<li>
These days there is good support for using postscript fonts instead of computer modern. The following packages help including them: times, avant, bookman, newcent, palatino, helvet. The are included with \usepackage{packagename}.
</li>
<li>
When using latex for reporting the <code>longtable</code> package provides<br />
good support for tables spanning multiple pages.
</li>
<li>Further reading:
<ul>
<li><a href="http://en.wikibooks.org/wiki/LaTeX">LaTeX Wikibook</a>
</li>
<li>
Manuela Jürgens: <a href="ftp://ftp.fernuni-hagen.de/pub/pdf/urz-broschueren/broschueren/a0260003.pdf">LaTeX – Eine Einführung und ein bisschen mehr….</a>
</li>
<li>
Manuela Jürgens: <a href="ftp://ftp.fernuni-hagen.de/pub/pdf/urz-broschueren/broschueren/a0279510.pdf">LaTeX – Fortgeschrittene Anwendungen.</a>
</li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://wuetender-junger-mann.de/wordpress/2009/01/lessons-learnt-from-using-latex/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Opensource Vector Graphics Editor</title>
		<link>http://wuetender-junger-mann.de/wordpress/2007/05/opensource-vector-graphics-editor/</link>
		<comments>http://wuetender-junger-mann.de/wordpress/2007/05/opensource-vector-graphics-editor/#comments</comments>
		<pubDate>Fri, 11 May 2007 17:24:15 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[Opensource]]></category>
		<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://wuetender-junger-mann.de/wordpress/?p=484</guid>
		<description><![CDATA[Alexey pointed me this week to Inkscape a GTK-based vector graphics editor that from first use seems comparable to CorelDraw (at least the historic version I used years ago). It feels much more intuitive than the Gimp.]]></description>
			<content:encoded><![CDATA[<p>Alexey pointed me this week to <a href="http://www.inkscape.org/">Inkscape</a> a GTK-based vector graphics editor that from first use seems comparable to CorelDraw (at least the historic version I used years ago). It feels much more intuitive than the Gimp. </p>
]]></content:encoded>
			<wfw:commentRss>http://wuetender-junger-mann.de/wordpress/2007/05/opensource-vector-graphics-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

