<?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>Productive Scholar &#187; LaTeX</title>
	<atom:link href="http://www.productivescholar.com/category/latex/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.productivescholar.com</link>
	<description>Productivity in Academia</description>
	<lastBuildDate>Thu, 14 Jan 2010 08:36:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Track Changes in LaTeX Documents using Subversion</title>
		<link>http://www.productivescholar.com/2009/10/25/track-changes-in-latex-documents-using-subversion/</link>
		<comments>http://www.productivescholar.com/2009/10/25/track-changes-in-latex-documents-using-subversion/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 07:49:16 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.productivescholar.com/?p=24</guid>
		<description><![CDATA[
I love LaTeX and use it for most of the documents I produce. However, there is one feature I was missing from Word, which is the ability to track changes when co-authoring documents. I found the solution to this problem in Subversion, a version control system.
The intended audience for this software is programmers who have [...]]]></description>
			<content:encoded><![CDATA[<div class="inpost"><img src="http://www.productivescholar.com/images/latex.jpg" class="inpost" /></div>
<p>I love LaTeX and use it for most of the documents I produce. However, there is one feature I was missing from Word, which is the ability to track changes when co-authoring documents. I found the solution to this problem in <a href="http://subversion.tigris.org/">Subversion</a>, a version control system.<br />
The intended audience for this software is programmers who have to work as a team on the source code of a program. Since tex files<br />
are basically source code, Subversion works great with LaTeX.</p>
<h3>The basics</h3>
<p>Subversion works as a client/server architecture. The server contains repositories and is the keeper of the files. Each client can checkout files to work on and then commit the changes back to the server when he is done. If two or more clients are working at the same time, the last one to commit will have to decide what to do with the differences. The nice thing is that the Subversion server keeps track of all changes made, so you can go back in time to any previous version easily (this is even better than what you can do with word.</p>
<h3>What you need</h3>
<p>You will need a server and a client. You can install a server on your own computer, but the easiest way is to use a hosted solution.<br />
<a href="http://beanstalkapp.com/">Beanstalk</a> is a Subversion hosting service that has a free plan for up to 3 users and 100MB, plus their documentation is great to help you get started. For the client, on Windows the best (and free) alternative is <a href="http://tortoisesvn.tigris.org/">TortoiseSVN</a> and it integrates well with Windows Explorer. On Mac OS, I personally use <a href="http://versionsapp.com/">Version</a> which is shareware, but there are also free command line tools available from <a href="http://www.open.collab.net/downloads/community/">openCollabNet</a>.
</p>
<p>To learn more about Subversion, the book <a href="http://svnbook.red-bean.com/">Version Control with Subversion</a> is available for free online.</p>
<div class="amtap-item" lang="en" xml:lang="en"><a href="http://www.amazon.com/Version-Control-Subversion-Michael-Pilato/dp/0596510330%3FSubscriptionId%3D1S2WBRADH9MA603A1602%26tag%3Dproducschola-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0596510330"><img src="http://ecx.images-amazon.com/images/I/51erSe6nolL._SL110_.jpg" width="84" height="110" alt=""/></a><br />
<h3><a href="http://www.amazon.com/Version-Control-Subversion-Michael-Pilato/dp/0596510330%3FSubscriptionId%3D1S2WBRADH9MA603A1602%26tag%3Dproducschola-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0596510330">Version Control with Subversion</a></h3>
<p class="author">C. Michael Pilato.					O&#8217;Reilly Media 2008, 					Paperback,				432 pages,				&#36;23.66</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.productivescholar.com/2009/10/25/track-changes-in-latex-documents-using-subversion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How-To Use the LaTeX Beamer Class for Great-Looking Presentations</title>
		<link>http://www.productivescholar.com/2008/03/15/how-to-use-the-latex-beamer-class-for-great-looking-presentations/</link>
		<comments>http://www.productivescholar.com/2008/03/15/how-to-use-the-latex-beamer-class-for-great-looking-presentations/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 22:10:17 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[beamer]]></category>
		<category><![CDATA[keynote]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[powerpoint]]></category>
		<category><![CDATA[presentation]]></category>

		<guid isPermaLink="false">http://www.productivescholar.com/2008/03/15/how-to-use-the-latex-beamer-class-for-great-looking-presentations/</guid>
		<description><![CDATA[
In academia, LaTeX is a popular alternative to PowerPoint for presentations. In this how-to, I&#8217;ll introduce you by example to the beamer class for creating presentation in LaTex. Using LaTex for this purpose has many advantages:

Present great-looking equations.
If you use LaTeX for your papers, you can easily reuse your equations and tables.
A more &#8220;professionnal&#8221; overall [...]]]></description>
			<content:encoded><![CDATA[<div class="inpost"><img src="http://www.productivescholar.com/images/latex.jpg" class="inpost" /></div>
<p>In academia, LaTeX is a popular alternative to PowerPoint for presentations. In this how-to, I&#8217;ll introduce you by example to the beamer class for creating presentation in LaTex. Using LaTex for this purpose has many advantages:</p>
<ul>
<li>Present great-looking equations.</li>
<li>If you use LaTeX for your papers, you can easily reuse your equations and tables.</li>
<li>A more &#8220;professionnal&#8221; overall look.</a>
<li>Avoid compatibility problems when using computers other than your own. While you don&#8217;t always know which PowerPoint version is going to be available (if any), you&#8217;re almost sure to find a PDF reader. Just to be on the safe side, you can carry with you a standalone PDF reader like <a href="http://portableapps.com/apps/office/sumatra_pdf_portable">Sumatra PDF portable</a>.</li>
</ul>
<p>However, using LaTeX has limitations such as the lack of a user-friendly graphical interface and the impossibility to add media elements such as videos and animations. Furthermore, you have to say goodbye all those great transitions (just kidding, I hate transitions).</p>
<p>Before we start, if you are new to LaTeX I suggest you first have a look at <a href="http://www.productivescholar.com/2008/01/21/getting-started-with-latex/">Getting Started with LaTex</a>.</p>
<p>To introduce you to the use of the beamer class, I will go throught a sample presentation:</p>
<ul>
<li><a href='http://www.productivescholar.com/wp-content/uploads/2008/03/beamer-example.tex' title='Beamer Example (LaTeX)'>Beamer Example (LaTeX)</a></li>
<li><a href='http://www.productivescholar.com/wp-content/uploads/2008/03/beamer-example.pdf' title='Beamer Example (PDF)'>Beamer Example (PDF)</a></li>
</ul>
<blockquote>
<pre>
\documentclass{beamer}

\usetheme[secheader]{Boadilla}
\usecolortheme{seahorse}
\usepackage[latin1]{inputenc}
</pre>
</blockquote>
<p>These commands tell the TeX engine that the document is going to be a beamer presentation. To see what other themes and colorthemes are available, check out the <a href="http://www.ctan.org/tex-archive/macros/latex/contrib/beamer/doc/beameruserguide.pdf">beamer class user guide</a> [PDF].</p>
<blockquote>
<pre>
\title{My Nice Presentation}
\author{Productive Scholar}
\date{March 12, 2008}
\institute[2008]{ECON 101}

\begin{document}

\frame{\titlepage}
</pre>
</blockquote>
<p>Sets up the title frame. The author and the institute (here I put 2008, but it could be your university) appear on the bottom left corner of every frame.</p>
<blockquote>
<pre>
\section[Outline]{}
\frame{\tableofcontents}

\section{Introduction}

\frame {
	\frametitle{First Frame}
	\begin{itemize}
		\item<1->One good argument
		\item<2->Another good argument, after one click
		\item<3->Last one, after another click
	\end{itemize}
}
</pre>
</blockquote>
<p>The first two lines make the outline frame. The rest create a frame with three bullet points. This frame consists of three actual PDF pages. The first bullet point will appear on all three, the second one on the last two pages and the last one on the last page only. This way, when you &#8220;click&#8221; (advance one page), a new element appears. To control the page on which the item first appears, change the number in the \item&lt;1-&gt; tag.</p>
<blockquote>
<pre>
\section{Next Section}

\subsection{First Sub Section}

\frame {
	\frametitle{Second Frame}
	This text will stay on all pages.
	\only<1>{
		\begin{itemize}
			\item<1->This will only appear on the first page
			\item<1->This is also only for the first page
		\end{itemize}
	}
	\only<2>{
		\begin{itemize}
			\item<2->This will only appear on the second page
		\item<2->This is also only for the second page
		\end{itemize}
      }
}
</pre>
</blockquote>
<p>In this case the first two bullet point elements appear on the first page of the frame, and only on that one. The other two elements only appear on the second page. To limit a part of the frame to a specific page, put your LaTeX code inside brackets after a \only&lt;#&gt; tag, where # is the page number.</p>
<blockquote>
<pre>
\subsection{Second Sub Section}

\frame {
	\frametitle{Last Frame}
	This is the last frame
}

\end{document}
</pre>
</blockquote>
<p>One last frame and the document is complete.</p>
<p>This short example is only meant to get you started. To learn more advanced stuff, like creating hand-outs or designing your own themes, check out the <a href="http://www.ctan.org/tex-archive/macros/latex/contrib/beamer/doc/beameruserguide.pdf">beamer class user guide</a> [PDF].</p>
<p>On Windows most people use Acrobat Reader for presentation, which is ok (except when an Auto-Update pops-up at the beginning of your prensentation). The free <a href="http://www.foxitsoftware.com/pdf/rd_intro.php">Foxit Reader</a> is another alternative.</p>
<p>On Mac OS X my favorite PDF reader for presentations is <a href="">Skim</a>. It works great and even allows you to add nice (for those who like transitions) Keynote-like transitions to your presentations (it has to be the same transition for all frames though). I also use the free <a href="http://www.filewell.com/iRedLite/">iRed Lite</a> to control Skim with my Apple remote. [Update: The most recent version of Skim now has built-in support for the Apple remote.]</p>
<p>Please share your beamer tips and tricks in the comments!</p>
<div class="amtap-item" lang="en" xml:lang="en"><a href="http://www.amazon.com/Guide-LaTeX-4th-Helmut-Kopka/dp/0321173856%3FSubscriptionId%3D1S2WBRADH9MA603A1602%26tag%3Dproducschola-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0321173856"><img src="http://ecx.images-amazon.com/images/I/51B5TC7W8GL._SL110_.jpg" width="88" height="110" alt=""/></a><br />
<h3><a href="http://www.amazon.com/Guide-LaTeX-4th-Helmut-Kopka/dp/0321173856%3FSubscriptionId%3D1S2WBRADH9MA603A1602%26tag%3Dproducschola-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0321173856">Guide to LaTeX (4th Edition)</a></h3>
<p class="author">Helmut Kopka.					Addison-Wesley Professional 2003, 					Paperback,				624 pages,				&#36;35.00</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.productivescholar.com/2008/03/15/how-to-use-the-latex-beamer-class-for-great-looking-presentations/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Getting started with LaTeX</title>
		<link>http://www.productivescholar.com/2008/01/21/getting-started-with-latex/</link>
		<comments>http://www.productivescholar.com/2008/01/21/getting-started-with-latex/#comments</comments>
		<pubDate>Mon, 21 Jan 2008 08:23:23 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Writing]]></category>
		<category><![CDATA[introduction]]></category>
		<category><![CDATA[mac os]]></category>

		<guid isPermaLink="false">http://www.productivescholar.com/2008/01/21/getting-started-with-latex/</guid>
		<description><![CDATA[
For my first how-to post on LaTeX, I&#8217;m going to do a little introduction to help you get set up and started. Moving to LaTeX from traditional word processors like Microsoft Words or OpenOffice.Org necessitates some efforts, but once you&#8217;ve succeeded, you get all those fancy-looking equations as a reward!
Getting the software you need
Whatever the [...]]]></description>
			<content:encoded><![CDATA[<div class="inpost"><img src="/images/latex.jpg" class="inpost" alt="LaTeX" height="178" width="240" /></div>
<p>For my first <em>how-to</em> post on LaTeX, I&#8217;m going to do a little introduction to help you get set up and started. Moving to LaTeX from traditional word processors like Microsoft Words or OpenOffice.Org necessitates some efforts, but once you&#8217;ve succeeded, you get all those fancy-looking equations as a reward!</p>
<h2>Getting the software you need</h2>
<p>Whatever the platform you&#8217;re on, you need two pieces of software for LaTeX: a LaTeX engine and a text editor. LaTeX documents are basically text files that are &#8220;compiled&#8221; by the LaTeX engine to create dvi, postscript or PDF documents. While you can use almost any text editor to create your LaTeX documents, such as Notepad on Windows or TextEdit on Mac OS, some are optimized for LaTeX and can therefore make you life easier. You might also need a viewer for the output files. LaTeX engines usually produce files in one of three formats: DVI, PostScript or PDF. I recommend outputting in PDF as it usually is more convenient and chances are you already have a viewer. All of the software I list below are free (except for WinEdt).</p>
<p></p>
<h3>Windows</h3>
<p>First, you need <a href="http://miktex.org/">MiKTeX</a>, a LaTeX engine. Then you need to choose a text editor. My editor of choice is <a href="http://www.texniccenter.org/">TeXnicCenter</a>, but <a href="http://www.winedt.com/">WinEdt</a> (shareware) is also very popular.</p>
<p>You can also download the <a href="http://www.tug.org/protext/">proTeXt</a> distribution which includes MiKTeX, TeXnicCener and GSView (a PostScript viewer).</p>
<h3>Mac OS X</h3>
<p>To install to LaTex engine on Mac OS, you first need to download <a href="http://ii2.sourceforge.net/">i-Installer</a> and use it to install the gwTeX package. Then you need to install an editor. My favorite is <a href="http://www.uoregon.edu/~koch/texshop/">TeXShop</a>, and <a href="http://itexmac.sourceforge.net/">iTeXMac</a> is another good alternative.</p>
<p>The is also a complete distribution called <a href="http://www.tug.org/mactex/">MacTeX</a> that includes the LaTeX engine (TeX Live 2007), TeXShop and other useful software. The only downside is the size (+700MB).</p>
<h3>Linux</h3>
<p>On Linux, you need the LaTeX and TeX packages that contain the engine. There are many editors available but the one I used when I was on Linux was <a href="http://kile.sourceforge.net/">Kile</a> and I liked it very much.</p>
<h2>Your first LaTeX document</h2>
<blockquote>
<pre>
\documentclass{report}

\begin{document}

\title{Introduction}
\author{You}
\maketitle

\tableofcontents

\chapter{Introduction}

You first \LaTeX file! This is a math equation $\alpha=0.1$
embedded in the text.
For a full equation:
\begin{equation}
\phi = \sum_{i=1}^{N} \left[ \frac{a^2_i}{2} \right]
\end {equation}

\section{A section}

This is the text that appears in the section.

\subsection{A sub section}

This is the text that appears in the sub section.

\chapter{Conclusion}

This concluded you first \LaTeX file.

\end{document}</pre>
</blockquote>
<p>The first line indicates the type of document. In this case it is a report, but it could have been an article or a book. The next line indicates the beginning of the document. The next three lines create the title page, and the one after that creates the table of content. The rest is the body of the document. This example document is quite simple, but you can build on it to make your own and learn.</p>
<h2>Where to go from here</h2>
<p>LaTeX is not something you can master in one day. I my opinion, the best way to learn is to start small and build on that. Don&#8217;t know how to do that symbol, how to put 3 images over a single caption or how to put colors in your document? That&#8217;s not a problem, Google is there for that. As long as you know the basics, you&#8217;re going to be able to do almost anything by looking it up on Google.</p>
<p>There is one book I would strongly recommend (it saved me a lot of time when I wrote my master thesis):</p>
<div class="amtap-item" lang="en" xml:lang="en"><a href="http://www.amazon.com/LaTeX-Companion-Techniques-Computer-Typesetting/dp/0201362996%3FSubscriptionId%3D1S2WBRADH9MA603A1602%26tag%3Dproducschola-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0201362996"><img src="http://ecx.images-amazon.com/images/I/51NWV8ATV4L._SL110_.jpg" width="87" height="110" alt=""/></a><br />
<h3><a href="http://www.amazon.com/LaTeX-Companion-Techniques-Computer-Typesetting/dp/0201362996%3FSubscriptionId%3D1S2WBRADH9MA603A1602%26tag%3Dproducschola-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0201362996">The LaTeX Companion (Tools and Techniques for Computer Typesetting)</a></h3>
<p class="author">Frank Mittelbach.					Addison-Wesley Professional 2004, 					Paperback,				1120 pages,				&#36;52.22</p>
</div>
<p>Most of the information in this book can be found using Google, but having it all in a structured book can be a real time saver, especially in the beginning.</p>
<p>I plan to write a series of articles on LaTeX to follow up on this one, so make sure to check back (or subscribe to my <a href="http://www.productivescholar.com/feed">rss feed)</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.productivescholar.com/2008/01/21/getting-started-with-latex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
