<?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>Schadenfreude &#187; powerpoint</title>
	<atom:link href="http://www.ralree.com/tag/powerpoint/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ralree.com</link>
	<description>Malicious enjoyment derived from observing someone else's misfortune</description>
	<lastBuildDate>Thu, 09 Feb 2012 01:49:15 +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>Hawt presentations with Beamer and KeyJNote</title>
		<link>http://www.ralree.com/2007/07/18/hawt-presentations-with-beamer-and-keyjnote/</link>
		<comments>http://www.ralree.com/2007/07/18/hawt-presentations-with-beamer-and-keyjnote/#comments</comments>
		<pubDate>Wed, 18 Jul 2007 03:28:00 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[latex]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[powerpoint]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[slides]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.ralree.info/2007/10/13/hawt-presentations-with-beamer-and-keyjnote</guid>
		<description><![CDATA[I stumbled upon KeyJNote today, and was very intrigued. I could use this for presentations! So, I figured I&#8217;d write up a little tutorial on how to make one. I&#8217;m going to use LaTeX and Beamer to create my presentation, but you can use whatever PDF-exporting software you would like. This is Ubuntu/Debian specific, so if you don&#8217;t use one of those, figure out the package install commands on your own. First, install stuff: sudo apt-get install keyjnote latex-beamer Now [...]]]></description>
			<content:encoded><![CDATA[<p>I stumbled upon <a href="http://keyjnote.sourceforge.net/">KeyJNote</a> today, and was very intrigued.  I could use this for presentations!  So, I figured I&#8217;d write up a little tutorial on how to make one.  I&#8217;m going to use LaTeX and <a href="http://latex-beamer.sourceforge.net/">Beamer</a> to create my presentation, but you can use whatever PDF-exporting software you would like.  This is Ubuntu/Debian specific, so if you don&#8217;t use one of those, figure out the package install commands on your own.</p>
<p>First, install stuff:</p>
<pre><code>
sudo apt-get install keyjnote latex-beamer
</code></pre>
<p>Now that we have everything installed, lets make a simple presentation.</p>
<pre><code>
$ vim example_presentation.tex
</code></pre>
<p>Here&#8217;s where the fun begins.  Beamer is great for presentations.</p>
<pre><code>
\documentclass{beamer}

\usepackage{beamerthemesplit}

\title{Why I love Chicken}
\author{Hank}
\date{\today}

\begin{document}

\frame{\titlepage}

\section{Introduction}
\subsection{Where did chicken come from?}
\frame
{
  \frametitle{The egg}

  \begin{itemize}
  \item&lt;1-&gt; Which came first?
  \item&lt;2-&gt; Did it evolve from dinosaurs?
  \item&lt;3-&gt; Why don't we find dinosaurs in chicken fossils together?
  \end{itemize}
}
\frame
{
  \frametitle{Feathers}

  \begin{itemize}
  \item&lt;1-&gt; Why do chickens have them?  They can't fly!
  \item&lt;2-&gt; What if chickens could fly...
  \end{itemize}
}
\end{document}
</code></pre>
<p>Then a simple build with <code>latex</code>:</p>
<pre><code>
$ pdflatex example_presentation.tex
</code></pre>
<p>And now for the grand finale:</p>
<pre><code>
$ keyjnote example_presenation.pdf
</code></pre>
<p>The screen flickers weird colors during the transitions on my machine.  Maybe something to do with Beryl or the NVidia proprietary drivers?  I don&#8217;t know.  But it&#8217;s still pretty cool.  I&#8217;ll probably stick to XUL if I can ever get it working again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ralree.com/2007/07/18/hawt-presentations-with-beamer-and-keyjnote/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

