<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/"><channel><title><![CDATA[latex-beamer - www.GuidoDiepen.nl]]></title><description><![CDATA[Tips and Tricks / Cool new tools / Automating everything / Analytics / Making life easier]]></description><link>https://www.guidodiepen.nl/</link><image><url>https://www.guidodiepen.nl/favicon.png</url><title>latex-beamer - www.GuidoDiepen.nl</title><link>https://www.guidodiepen.nl/</link></image><generator>Ghost 3.42</generator><lastBuildDate>Fri, 09 Feb 2024 06:24:18 GMT</lastBuildDate><atom:link href="https://www.guidodiepen.nl/tag/latex-beamer/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[Creating latex-beamer handouts with notes]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p><strong>Update 20160514:</strong> Moved the source file to GitHub. This will allow other people to easily create extensions/Pull Requests.</p>
<p><strong>Update 20091104:</strong> Added “1 on 1 with notes landscape”, based on work of Edson Valle. Also added “2 on 1 with notes” and “3 on 1 with notes” layouts.</p>
<p><strong>Update 20091108:</strong></p>]]></description><link>https://www.guidodiepen.nl/2009/07/creating-latex-beamer-handouts-with-notes/</link><guid isPermaLink="false">60310ee9085ea20001e01c57</guid><category><![CDATA[handouts]]></category><category><![CDATA[latex-beamer]]></category><category><![CDATA[notes]]></category><dc:creator><![CDATA[Guido Diepen]]></dc:creator><pubDate>Thu, 02 Jul 2009 15:56:07 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p><strong>Update 20160514:</strong> Moved the source file to GitHub. This will allow other people to easily create extensions/Pull Requests.</p>
<p><strong>Update 20091104:</strong> Added “1 on 1 with notes landscape”, based on work of Edson Valle. Also added “2 on 1 with notes” and “3 on 1 with notes” layouts.</p>
<p><strong>Update 20091108:</strong> Added “2 on 1 with notes landscape”, based on work of Edson Valle.</p>
<p><strong>Update 20091202:</strong> Added “1 on 1 with notes”, based on work of Harald Welte.</p>
<p>For all my presentations I have been using <a href="http://latex-beamer.sf.net" title="LaTeX Beamer Homepage">LaTeX-Beamer</a> package. One of the things I missed was the possibility of having handouts of my slides with some lines for notes besides the slides. After some searching I found that in the mailing lists of latex-beamer somebody had already come up with a solution.</p>
<p>If you put the file <code>handoutWithNotes.sty</code> (which you can obtain from<a href="https://github.com/gdiepen/latexbeamer-handoutWithNotes">GitHub</a> either in your local texmf directory or in the same directory as your presentation you can include it with the following command</p>
<pre><code class="language-latex">\usepackage{handoutWithNotes}
</code></pre>
<p>After that, to get 4 sheets on the left side of the page with on the right side of the page some lines for people to write notes you can use the following command</p>
<pre><code class="language-latex">\pgfpagesuselayout{4 on 1 with notes}[a4paper,border shrink=5mm]
</code></pre>
<p>The resulting PDF file will contain pages like:</p>
<p><img src="https://www.guidodiepen.nl/content/images/2009/07/examplenotes.png" alt="Example of handout with notes" title="Example of handout with notes"></p>
<p><strong>Updated 20091104.</strong> I received a note from Edson Valle that he created an addition to the notes files, namely one that allows you to print your sheets 1 per page, but with notes on the side. Made a some small alteration to his original contribution to allow for easier usage.</p>
<p>Again, make sure that you include the style file with:</p>
<pre><code class="language-latex">\usepackage{handoutWithNotes}
</code></pre>
<p>after which you can now use the “1 on 1 landscape” layout with the following command:</p>
<pre><code class="language-latex">\pgfpagesuselayout{1 on 1 with notes landscape}[a4paper,border shrink=5mm]
</code></pre>
<p>The resulting files will look something like:</p>
<p><img src="https://www.guidodiepen.nl/content/images/2009/07/examplenotes2.png" alt="Showing the 1 on 1 with notes landscape"></p>
<p>While I was at it, right away I also created two additional styles “2 on 1 with notes” and “3 on 1 with notes”. The first of these two was already requested once by kc853. Hopefully this new style will be sufficient for his needs. If not, I hope that it will serve as a good starter for modifications.</p>
<p>The “2 on 1 with notes” layout can be used with the command</p>
<pre><code class="language-latex">\pgfpagesuselayout{2 on 1 with notes}[a4paper,border shrink=5mm]
</code></pre>
<p>with the following result:<br>
<img src="https://www.guidodiepen.nl/content/images/2009/07/examplenotes4.png" alt="Image showing &quot;2 on 1 with notes&quot; layout"></p>
<p>Finally, the “3 on 1 with notes” pages was created because I think that the “2 on 1 with notes” seemed a bit empty ;) You can use this “3 on 1 with notes” layout with<br>
the command</p>
<pre><code class="language-latex">\pgfpagesuselayout{3 on 1 with notes}[a4paper,border shrink=5mm]
</code></pre>
<p>with the following result:<br>
<img src="https://www.guidodiepen.nl/content/images/2009/07/examplenotes3.png" alt="Image showing &quot;3 on 1 with notes&quot; layout"></p>
<p><strong>Update 20091108 :</strong> Based on the above updated styles, Edson Valle provided me with another addition, the “2 on 1 with notes landscape” layout. You can use it with the command</p>
<pre><code class="language-latex">\pgfpagesuselayout{2 on 1 with notes landscape}[a4paper,border shrink=5mm]
</code></pre>
<p>and the output you will get will be something like:<br>
<img src="https://www.guidodiepen.nl/content/images/2009/07/examplenotes5.png" alt="Example of &quot;2 on 1 with notes landscape&quot; layout"></p>
<p><strong>Update 20091202 :</strong> Based on the above updated styles, Harald Welte provided me with yet another addition, the “1 on 1 with notes” layout. You can use it with the command</p>
<pre><code class="language-latex">\pgfpagesuselayout{1 on 1 with notes}[a4paper,border shrink=5mm]
</code></pre>
<p>and the output you will get will be something like:<br>
<img src="https://www.guidodiepen.nl/content/images/2009/07/examplenotes7.png" alt="Example output of &quot;1 on 1 with notes&quot; layout"></p>
<p>All of the above layouts can be used by downloading the handoutWithNotes.sty from my <a href="https://github.com/gdiepen/latexbeamer-handoutWithNotes">GitHub repository</a>.</p>
<p>Just drop me a note in case you like this or find it useful or in case you have any questions :)</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[LaTeX Beamer Diepen style]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>When I was a PhD student I had to give some presentations. I think I tried once to use Powerpoint to give a presentation filled with mathematical equations before I decided that this was not going to work ;)</p>
<p>After some other packages, I finally found <a href="http://latex-beamer.sf.net" title="LaTeX Beamer Homepage">LaTeX-Beamer</a>. For the majority of</p>]]></description><link>https://www.guidodiepen.nl/2009/04/latex-beamer-diepen-style/</link><guid isPermaLink="false">60310ee9085ea20001e01c54</guid><category><![CDATA[diepen-style]]></category><category><![CDATA[latex]]></category><category><![CDATA[latex-beamer]]></category><category><![CDATA[style]]></category><dc:creator><![CDATA[Guido Diepen]]></dc:creator><pubDate>Wed, 29 Apr 2009 18:36:41 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p>When I was a PhD student I had to give some presentations. I think I tried once to use Powerpoint to give a presentation filled with mathematical equations before I decided that this was not going to work ;)</p>
<p>After some other packages, I finally found <a href="http://latex-beamer.sf.net" title="LaTeX Beamer Homepage">LaTeX-Beamer</a>. For the majority of the presentations the default styles provided with LaTeX-Beamer were sufficient, but every now and then I wanted to have a bit more, do I dare to say it, powerpoint like theme :)</p>
<p>I wanted to have background image over which an white transparent layer would be put, on which the text would appear. I created a latex-beamer style for this and a sample output of this diepen style is given in the two pictures below:</p>
<p><img src="https://www.guidodiepen.nl/content/images/2009/04/example-0.png" alt="Screenshot showing example title page of diepen style"></p>
<p><img src="https://www.guidodiepen.nl/content/images/2009/04/example-1.png" alt="Screenshot of normal sheet in diepen style"></p>
<p>The picture that is on the background can be changed into any picture you choose, although I found that in most cases the result is the best when the used image is not too bright.</p>
<p>To use the style, you must first download the source from my <a href="https://github.com/gdiepen/beamerthemediepen">GitHub repository</a>, and copy it into the texmf directory (or your local texmf directory) and make sure that you have run the texhash command under linux or the windows equivalent such that pdflatex is able to find the style files.</p>
<p>After you have done this, you can use it by placing the following command in the preamble of your beamer file:</p>
<pre><code class="language-latex">\usetheme diepen
</code></pre>
<p>The following options are available:</p>
<ul>
<li><strong>backgroundimagefile</strong>. The filename (without extension) of the image to use as background (e.g. <code>\usetheme[backgroundimagefile=schiphol-tower]{diepen}</code> to use schiphol-tower image as background)</li>
<li><strong>opacity</strong>. A float value denoting the opacity of the white overlay on all sheets except the title page <code>\usetheme[opacity=0.78]{diepen}</code> to have opacity of 78%).</li>
<li><strong>useblacktitletext</strong>. Is a boolean and if present the color of the text on the titlepage will be black instead of white <code>\usetheme[useblacktitletext]{diepen}</code>. This option sometimes is useful for background images that are rather light in color</li>
</ul>
<p>If you have any questions about this diepen style, please let me know.</p>
<!--kg-card-end: markdown-->]]></content:encoded></item></channel></rss>