<?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[notes - 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>notes - www.GuidoDiepen.nl</title><link>https://www.guidodiepen.nl/</link></image><generator>Ghost 3.42</generator><lastBuildDate>Sat, 10 Feb 2024 07:45:18 GMT</lastBuildDate><atom:link href="https://www.guidodiepen.nl/tag/notes/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></channel></rss>