<?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; Writing</title>
	<atom:link href="http://www.productivescholar.com/category/writing/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>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>
