<?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>It&#039;s Forty Two! &#187; LaTeX</title>
	<atom:link href="http://blog.itsfortytwo.net/tag/latex/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.itsfortytwo.net</link>
	<description>Answer to Life, the Universe and Everything ...</description>
	<lastBuildDate>Fri, 20 Aug 2010 17:26:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>LaTeX Margins</title>
		<link>http://blog.itsfortytwo.net/2009/05/latex-margins/</link>
		<comments>http://blog.itsfortytwo.net/2009/05/latex-margins/#comments</comments>
		<pubDate>Tue, 19 May 2009 19:20:42 +0000</pubDate>
		<dc:creator>Species8472</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[LaTeX]]></category>

		<guid isPermaLink="false">http://www.itsfortytwo.net/wp/?p=47</guid>
		<description><![CDATA[Was writing a formula sheet for my quantum mechanics exam today, and needed to maximize usage of my available space on a piece of A4 paper. So I googled some solutions to get LaTeX to do just that. In addition to using the /tiny command to make small text of course. Firstly I needed to [...]]]></description>
			<content:encoded><![CDATA[<p>Was writing a formula sheet for my quantum mechanics exam today, and needed to maximize usage of my available space on a piece of A4 paper. So I googled some solutions to get LaTeX to do just that. In addition to using the /tiny command to make small text of course.</p>
<p>Firstly I needed to minimize the margins, so I added this in the header:</p>
<pre>\setlength\topmargin{-3cm}
\setlength\textheight{27cm}
\setlength\textwidth{19cm}
\setlength\oddsidemargin{-1.5cm}
\setlength\evensidemargin{-1.5cm}</pre>
<p>Then I needed to split the page into 3 columns so I wouldn&#8217;t waste too much space at each lineshift:</p>
<pre>\usepackage{multicol}

\begin{document}
\tiny
\begin{multicols}{3}
...text...
\end{multicols}</pre>
<p>And last but not least, get rid of that annoying huge indent that the align environment has.</p>
<pre>\documentclass[fleqn]{article}

\usepackage{amsmath}

\makeatletter
\setlength\@mathmargin{0.2cm}
\makeatother</pre>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share this post</a> </p>]]></content:encoded>
			<wfw:commentRss>http://blog.itsfortytwo.net/2009/05/latex-margins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
